Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法刷新编辑表单对话框以在动态生成的网格上应用更新的选项?基本上,当下拉列表值发生更改时,我需要更改一些属性,然后对话框会反映这些更改。例如,我更新了属性 editable 以隐藏一个字段。
container.jqGrid('setColProp', fieldName, { editable: false});
有什么办法吗?
您可以在加载网格时发送的回发中设置列数据。使用 url 属性设置 url:
url: $("#BlendGrades").jqGrid({ url: '/Storage/GreenStorage/SetSectionList?q=2&location.Id=' + '<%:Model.Location.Id%>', datatype: "json", .....