dojox.grid.data.Objects在使用setData()方法时总会出现修改数据失败提示,查看源代码后发现这个是dojo的一个bug,需要对dojox.grid.data.Object源代码中的allChange方法进行修改,把源代码中的
this.notify("FieldsChange");
this.inherited(arguments);
改为:
this.inherited(arguments);
this.notify("FieldsChange");
这样在使用setData方法时就不会出错了。。
真折腾,这个问题花了我将近一天功夫才搞定!!!
原文链接:https://www.f2er.com/dojo/291851.html