SmartGWT Live Grid(带有 iBATIS)
我没有找到任何有关如何在实时网格中转换 SmartGWT ListGrid 的文档。 我该怎么做? ListGrid 默认情况下是实时网格吗? 如果是这样,我该如何禁用此功能?
最后:我必须为网格提供一个数据源。 我的应用程序在服务器端使用 iBATIS,使用 GWT-RPC。 如何向 Live Grid 提供数据并让它管理要获取的数据?
I didn't find any docs about how to convert a SmartGWT ListGrid in a Live Grid. How can I do it? Is the ListGrid a Live Grid by default? If so, how can I disable this feature?
Finally: I have to provide a DataSource for the Grid. My app uses iBATIS in the server-side, using GWT-RPC. How can I provide the data to the Live Grid and let it manage the data to be fetched?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必更改 ListGrid 上的任何内容,绑定到 ListGrid 的 DataSource 必须发送 startrow 和 endrow 参数,然后后端必须返回适当的数据。
您可以查看参数是否在 firebug 中发送,如果没有发送,只需在您的数据源上调用 setSendMetaData(true)
我对 iBatis 没有任何了解,所以我无法回答这部分问题
You don't have to change anything on your ListGrid, your DataSource which is bound to your ListGrid has to send the startrow and endrow parameter and then your backend has to return the appropriate data.
You can the see if the parameters are send in firebug, if they aren't send, just call setSendMetaData(true) on your DataSource
I don't have any knowledge with iBatis so I can't answers that part of the questions