得儿 发表于 2023-12-26 10:55:31

excel下拉框值的设定

从spread画面导出excel,excel里有下拉框,我现在下拉框设定的是FarPoint.Web.Spread.ComboBoxCellType
ComboBoxCellType cb = new ComboBoxCellType(new string[] { "赤色", "緑色", "青色" },
                new string[] { "赤色", "緑色", "青色" });
如果这样设定的话只能显示255位
有没有什么方法实现像excel一样下拉框的值设定为公式,【=$A$1:$A$21】,像这样设定为某一列的值,就可以显示为255位以上




Richard.Ma 发表于 2023-12-26 10:55:32

首先,excel是不支持下拉框的,你说的下拉框实际上是list类型的数据验证

spread webform并不支持兼容于excel的数据验证。

你可以尝试我们的spreadjs控件,里面有数据验证功能,能实现你的需求
https://demo.grapecity.com.cn/spreadjs/SpreadJSTutorial/features/cells/data-validation/basic-data-validator/purejs



页: [1]
查看完整版本: excel下拉框值的设定