用于“阅读窗格”的 GWT 小部件在 Google 阅读器中看到过吗?
有没有一种方法可以使用标准 GWT 小部件和面板的组合来轻松模拟 Google Reader 的阅读窗格功能?
我需要一个表格或一个数据“标题”列表。该列表应该是可滚动和/或分页的,但单个项目应该是“可扩展的”以便详细阅读。扩展项目应该简单地扩展整个列表的可滚动区域(即使用相同的滚动条并且不引入第二个滚动条)。
据我所知,现有的面板和小部件都无法实现这一点。有什么想法如何解决这个问题吗?
Is there a way to easily simulate Google Reader's reading pane functionality using combination of standard GWT widgets and panels?
I need a table, or a list of "headers" for my data. This list should be scrollable and/or paginated, but individual items should be "expandable" for reading in detail. Expanded items should simply extend the scrollable area of the entire list (i.e. use the same scrollbar and do not introduce a second one).
From what I can see, none of the existing panels and widgets can achieve this. Any ideas how to approach this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
CellList
与复杂的Cell
结合使用,该复杂的Cell
会对单击事件做出反应以展开/折叠。至于无限滚动,Showcase 示例中有一个示例:http:// gwt.google.com/samples/Showcase/Showcase.html#!CwCellList
You can use a
CellList
with a complexCell
that reacts to click events to expand/collapse.As for the inifinite scrolling, there's an example in the Showcase sample: http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList