使用 GWT-RPC 分页 GWT-EXT 数据网格?

发布于 2024-07-16 12:15:33 字数 134 浏览 7 评论 0原文

我需要在分页数据网格中显示来自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾城泪 2024-07-23 12:15:33

几周前我也想这样做,并努力寻找了很长时间,但一无所获。 最后我写了自己的分页网格,支持 RPC/排序/编辑/等。

它的目的是通用的,并且仍在进行中,但要使用它,您只需实现 TableSource 和 TableRenderer 接口,如下所示:

new PagedTable(new AssetTableSource(), new AssetTableRenderer(), 30);

我已在此处发布了代码:

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:

new PagedTable(new AssetTableSource(), new AssetTableRenderer(), 30);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文