如何向 UiBinder 中的 Google Web Toolkit 弹性表添加行?
在哪里可以找到 FlexTable 的 UiBinder 模板?
我正在使用 Google Web Toolkit (GWT)。
Where can I find a UiBinder template for the FlexTable?
I am using Google Web Toolkit (GWT).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了链接text 表示如果你不需要处理事件,你可以直接使用 HTML 而不是 FlexTable 进行布局:
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:
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.