Qooxdoo 表小部件:将编辑的更改写入远程模型
我正在使用连接到远程模型的 Qooxdoo 表小部件。
将远程数据读入表中的工作方式很酷,但由于表有一些可编辑的列,问题是:如何指示模型将这些更改的数据写入服务器?
该模型由本书定义,覆盖 _loadRowData
和 _loadRowCount
方法,附加到相关的 *Completed
处理程序,就像它所描述的那样此页面。
谢谢
I'm using a Qooxdoo table widget attached to a remote model.
Reading remote data into the table worked like charm, but since the table has some editable column, the problem is: how do I instruct the model to write those changed data to the server?
The model is defined by the book, overriding the _loadRowData
and _loadRowCount
methods, attached to the related *Completed
handlers, just like it is described into this page.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,远程模型不提供将更改传回服务器的方法。相反,您可以侦听表的“dataEdited”事件。当然,如何将更改发送到服务器取决于您使用的后端类型。
From what I know, the Remote model doesn't provide a way to communicate changes back to the server. Instead, you can listen for the table's "dataEdited" event. Just how you send the changes to the server of course depends on the type of backend you're using.