我必须在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)
列表选项。你能指导一下我在这里做错了什么吗?
感谢您的时间。