动态添加选项以选择列表

时间:2012-03-27 21:21:38

标签: jquery jqgrid

我必须在jqGrid中构建两个选择列表,例如“SpTypes""SpNames"SpNames应该动态构建,具体取决于{{1}中选择的值我正在使用ASP.NET MVC3框架进行实现。我使用带有自定义函数的SpTypes在JqGrid中创建了SpTypes。这些函数使用edittype: "custom"和{{1}构建列表。

这是:document.createElement("select")

document.createElement("option")

我尝试使用以下内容在colModel的select元素的{ name: "SpTypes", index: "SpTypes", hidden:true, editable:true, editrules: { edithidden: true}, edittype: "custom", editoptions: { custom_element: LoadFormSpTypesDDL, custom_value:FormSpTypesDDLValue}}, { name: "SpNames", index: "SpNames", editable:true, edittype: "select", editoptions: {value: "0:All"}}, 事件上构建SpNames列表:

这是:OnChange

SpType

上述代码不会更改Function LoadFormSpTypesDDL (few code lines)列表选项。你能指导一下我在这里做错了什么吗?

感谢您的时间。

0 个答案:

没有答案