具有远程模型的 qooxdoo 表,在 UI 上插入新行并在服务器上更新
使用这个我成功地能够使用 qooxdoo 从我的数据库检索数据
http://qooxdoo.org/documentation/ 0.8/remote_table_model
但我的问题是,我想将新数据插入远程模型并 在服务器上更新它,并在表小部件上更新它。
但远程数据模型似乎完全不完整,甚至没有 提供 addRows 或 addRowsAsMapArray 函数作为简单模型,那么如何 我实现这个?
Using this I successfully able to use qooxdoo to retrive data from my database
http://qooxdoo.org/documentation/0.8/remote_table_model
But my problem is, I want to Insert new Data into remote model and
update it on the server and also update it on the Table widget.
But remote data model seems to be totally incomplete, it doesn't even
offer addRows or addRowsAsMapArray function as Simple Model so how can
I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这个功能缺失了。作为解决方法,您可以将数据添加到服务器并重新加载表。由于只应加载表的部分内容,因此这并不像听起来那么糟糕。更新数据也不是 API 的一部分,但这很困难,因为框架不知道您的服务器接口。
I think that feature is missing. As a workaround, you could add the data to the server and reload the table. As only parts of the table should be loaded, this is not as bad as it might sound in the first place. Updating your data is also not part of the API but thats hard anyway because the framework does not know you server interace.