如果select元素没有任何选项,则不会呈现选择列表的名称。当我在一个paritcular事件上自动填充选择时,我无法保存所选值,因为select没有名称。是否有jqGrid属性来管理它?
答案 0 :(得分:0)
我假设您在编辑单元格时遇到问题,并且您在colModel中创建了类似的列:
{name:'strType', index:'strType', width:70, sortable:false, editable:true, edittype:'select', editoptions: { value: "" }}
您希望了解此功能的所有内容均以docs编写,并且有:
editoptions值必须包含一个集合 价值
所以我会自己设置name属性。如果你在javascript中添加选项框选项,设置名称属性很简单。
$('#1_strType').attr('name', 'strType')
我还没有测试过这个解决方案,但我认为这可行:)