Dojo 数据网格中的修改记录
如何从 DOJO 数据网格获取修改后的记录。就像在 EXTJS 中一样,我们有一个名为 dirty 的属性,如果记录被修改,该属性就会设置为 true,类似地,我们在 dojo 中是否有任何属性表明记录已修改,或者是否有任何解决方法。等待回复。
How can I get the modified records from a DOJO Data grid. Like in EXTJS we have an attribute named dirty which is set to true if the record is modified similarly do we have any attribute in dojo which says that the record is modified or is there any workaround for the same. Waiting for the reply.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用网格的 onApplyCellEdit 事件并创建更改数组或类似的内容。您可以获得新值、行索引和字段索引。
从API:
onApplyCellEdit(inValue, inRowIndex, inFieldIndex) 对给定网格单元应用编辑时触发的事件
You can use the event onApplyCellEdit of the grid and create an array of changes or something similar. You can get the new value, the row index and the field index.
From the API:
onApplyCellEdit(inValue, inRowIndex, inFieldIndex) Event fired when editing is applied for a given grid cell