GXT(EXT-GWT) 无法将更改提交到 EditorGrid 存储
我有一个编辑器网格。当我编辑网格时,我使用 grid.getStore().commitChanges() ,以便将所有更改保存到网格存储中。
然后我打印出网格存储的每一行。它返回的是以前的值,而不是更新后的值。
我搜索了 sensha ext-gwt 论坛,但找不到解决方案。
I have an EditorGrid. When i edit the grid i use grid.getStore().commitChanges()
, in order to save all the changes to the grid's store.
Then i print out each row of the grid's store. It return's the previous values and not the updated ones.
I searched sensha ext-gwt forum, but couldn't find a solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将StoreListener添加到网格存储来在存储上完成更新
请参阅此处的javadoc
You can have updated done on your Store by adding a StoreListener to the store of your Grid
see the javadoc here