将 GWT 中的字符串列表表示为编辑器中的小部件

发布于 2024-12-06 10:44:54 字数 134 浏览 1 评论 0 原文

我正在构建一个 GWT 应用程序。

我想将项目列表 (List < String >) 与编辑器关联。

是否有任何内置小部件支持编辑项目列表?

将显示逗号分隔值并知道如何将它们呈现回代理的东西。

I'm building a GWT app.

I want to associate a list of items (List < String >) to an editor.

Is there any built in widgets that support editing list of items?

Something that will show comma separated values and will know how to render them back to the proxy.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

独享拥抱 2024-12-13 10:44:54

您可以使用CellList小部件来显示项目列表。如果您想水平显示它们,请将 float:left 添加为 Celllist 样式项目中各个项目的样式:cellListEvenItemcellListOddItem

You can use the CellList widget to display a list of items. If you want to present them horizontal add float:left as style to the individual items in the Celllist style items: cellListEvenItem and cellListOddItem.

调妓 2024-12-13 10:44:54

是的,请查看 CellTable

Yes, take a look at CellTable.

作业与我同在 2024-12-13 10:44:54

您可以为 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.

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