jqGrid 4.3.2 inlineNav添加选择el

时间:2012-04-30 15:00:06

标签: jqgrid inline-editing

当网格的添加功能启动时,我遇到了一个问题。我的colModel为select元素定义了一些有效的选项。当面对向网格添加新行时,select元素始终使用未定义的值进行渲染,而不是colModel中的实际值之一。确保仅显示此元素的实际colModel值的技术是什么?

1 个答案:

答案 0 :(得分:1)

根据文档,您的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