将 GWT 中的字符串列表表示为编辑器中的小部件
我正在构建一个 GWT 应用程序。
我想将项目列表 (List < String >) 与编辑器关联。
是否有任何内置小部件支持编辑项目列表?
将显示逗号分隔值并知道如何将它们呈现回代理的东西。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在构建一个 GWT 应用程序。
我想将项目列表 (List < String >) 与编辑器关联。
是否有任何内置小部件支持编辑项目列表?
将显示逗号分隔值并知道如何将它们呈现回代理的东西。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您可以使用
CellList
小部件来显示项目列表。如果您想水平显示它们,请将float:left
添加为 Celllist 样式项目中各个项目的样式:cellListEvenItem
和cellListOddItem
。You can use the
CellList
widget to display a list of items. If you want to present them horizontal addfloat:left
as style to the individual items in the Celllist style items:cellListEvenItem
andcellListOddItem
.是的,请查看 CellTable。
Yes, take a look at CellTable.
您可以为 CellList 和/或 CellTable 实现自定义类以满足您的需求。 gwt 中的所有组件都扩展了 Widget,并且也可以扩展。
You can implement your custom class for CellList and/or CellTable adapting for your needs. All components from gwt extends Widget, and can be extended too.
最终得到了这个 Facebook 自动完成风格
http://raibledesigns.com/rd/entry/creating_a_facebook_style_autocomplete
和演示http://demo.raibledesigns.com/gwt-autocomplete/
Ended up with this Facebook auto complete style
http://raibledesigns.com/rd/entry/creating_a_facebook_style_autocomplete
And demo http://demo.raibledesigns.com/gwt-autocomplete/