使用 GWT-RPC 分页 GWT-EXT 数据网格?
我需要在分页数据网格中显示来自 GWT-RPC 服务的数据。 gwt-ext 展示未提供结合 gwt-rpc 调用和数据网格的示例。 这太糟糕了,因为原始的 javascript Ext 网格组件提供分页和远程排序。 如何利用 GWT 的这些功能?
I need to display data coming from a GWT-RPC service in a paginated datagrid.
The gwt-ext showcase does not provide an example combining gwt-rpc calls and datagrids.
That is too bad because the original javascript Ext grid components offer paging and remote sorting. How to take advantage of these features with GWT ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
几周前我也想这样做,并努力寻找了很长时间,但一无所获。 最后我写了自己的分页网格,支持 RPC/排序/编辑/等。
它的目的是通用的,并且仍在进行中,但要使用它,您只需实现 TableSource 和 TableRenderer 接口,如下所示:
我已在此处发布了代码:
http://wiki.shiftyjelly.com/index.php/GWT#GWT_RPC_Paged_Table
随意将 PagingControl.java 中的按钮恢复为普通 GWT 按钮。
I too wanted to do this a few weeks ago, and searched long and hard and found nothing. In the end I wrote my own paged grid that supports RPC/Sorting/Editing/Etc.
It's intended to be generic, and is still a work in progress, but to use it you simply implement the TableSource and TableRenderer interfaces like so:
I have posted the code here:
http://wiki.shiftyjelly.com/index.php/GWT#GWT_RPC_Paged_Table
Feel free to revert the buttons in the PagingControl.java back to normal GWT buttons.