如何向 UiBinder 中的 Google Web Toolkit 弹性表添加行?

发布于 2024-08-22 14:01:14 字数 247 浏览 11 评论 0原文

在哪里可以找到 FlexTable 的 UiBinder 模板?

我正在使用 Google Web Toolkit (GWT)。

Where can I find a UiBinder template for the FlexTable?

I am using Google Web Toolkit (GWT).

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

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

发布评论

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

评论(2

蓝眼泪 2024-08-29 14:01:14

我找到了链接text 表示如果你不需要处理事件,你可以直接使用 HTML 而不是 FlexTable 进行布局:

<g:HTMLPanel>
   <table>
    <tr><td>Info:</td><td><g:TextBox ui:field="infoTextBox"/></td></tr>
  </table>
</g:HTMLPanel> 

I found a link text that said if you do not need to handle events, you can just use straight HTML instead of FlexTable for layout:

<g:HTMLPanel>
   <table>
    <tr><td>Info:</td><td><g:TextBox ui:field="infoTextBox"/></td></tr>
  </table>
</g:HTMLPanel> 
静若繁花 2024-08-29 14:01:14

AFAIK,FlexTable 没有自定义“模板”(例如,DockLayoutPanel)。此外,当您动态添加/删除内容时,会使用 FlexTable - 这意味着您不会通过 UiBinder 模板添加内容(这甚至没有意义),您可以在绑定到该 UiBinder 模板的类。表的初始内容也是如此 - 您只需以编程方式插入它。

AFAIK, there's no custom "template" for FlexTable (as there is for, for example, DockLayoutPanel). Besides, FlexTable is used when you have content added/removed dynamically - which means you won't be adding stuff via UiBinder templates (that doesn't even makes sense), you'd do that in the class bound to that UiBinder template. The same goes for initial content of the table - you just have to insert it programmatically.

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