Dojo 数据网格中的修改记录

发布于 2024-11-17 17:07:37 字数 129 浏览 1 评论 0原文

如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

层林尽染 2024-11-24 17:07:37

您可以使用网格的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文