当网格的添加功能启动时,我遇到了问题。我的 colModel 为选择元素定义了一些有效的选项。当面对向网格添加新行时,select 元素始终使用未定义的值呈现,而不是 colModel 中的实际值之一。确保仅显示此元素的实际 colModel 值的技术是什么?
根据文档,您的editoptions
配置中存在语法错误:
Note the last element in the string - it should not end with ;
因此,您的vendorOptions
值应为:
var vendorOptions = {value: "1:AAA;2:BBB;3:CCC;4:DDD;5:EEE;6:FFF"};
您可以在此处阅读完整的文档:http://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules#editable