我有一个使用 JSON 分配给 REST 服务的 dgrid。它工作正常。
我在其中一列中有一个过滤器选择。filterselect 是从另一个 dojo 存储中填充的。
我的问题是,当它的值例如为 10 时,如何禁用 filterselect?
我试过canEdit,但它不起作用。
有什么建议么?
谢谢!
Editor({
label: 'Size', autoSave: true, field: 'picsubtype',
canEdit: function(object, value) {
return value != 10;
},
widgetArgs: {
store: filesubtypeStore, maxHeight: 150, style: "height: 20px;"
},
}, FilteringSelect)
此代码不起作用...