如何使用 GWT 2.4 的 uiBinder 设置 flextable
我正在尝试使用 uiBinder 设置弹性表。我正在使用 GWT 2.4,并且我知道如何制作弹性表,但不知道如何使用 uiBinder。我发现了这个问题: 如何向 UiBinder 中的 Google Web Toolkit 弹性表添加行? 有人询问过 SO,但没有关于如何执行此操作的示例。
因此,如果我将小部件声明为:
@UiBinder FlexTable flexTable;
如何初始化一个包含两列的空白行和一个使用 @UiConstructor 或 (provider=true) 使用 uiBinder 命名列的标题行?
I'm trying to setup a flextable with uiBinder. I'm using GWT 2.4 and I know how to do a flextable, but not with uiBinder. I found this question: How can I add rows to a Google Web Toolkit flextable in the UiBinder? was asked on SO, but no examples on how to do this.
So if I declare the widget as in:
@UiBinder FlexTable flexTable;
How do I do a initialize a blank row with two columns and a header row that names the columns with @UiConstructor or (provider=true) using uiBinder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 FlexTable 小部件时,您只能使用 ui.xml 模板来设置其位置、格式和属性。您仍然需要在 Java 代码中实用地提供表的内容(和标题)。
有两种方法可以实现此目的:
1:当您调用
initWidget(...)
时,依靠模板为您实例化一个新的空 FlexTable。您可以随后立即对table.setText(0,0, "Header 1")
等进行适当的调用来指定您的内容。2:在调用
initWidget(...)
之前自己实例化FlexTable,并使用provided=true注释您的表成员变量。对setText()
进行相同的调用。示例
(使用方法 2)
并在您的 ui.xml 文件中:
When using the FlexTable widget, you can only use the ui.xml template to set it's location, formatting, and attributes. You'll still need to provide the contents (and headers) of the table pragmatically in your java code.
There are two approaches to this:
1: Rely on the template to instantiate a new, empty FlexTable for you when you call
initWidget(...)
. You can follow up with appropriate calls totable.setText(0,0, "Header 1")
, etc. immediately afterwards to specify your content.2: Instantiate the FlexTable yourself before you call
initWidget(...)
and also annotate your table member variable with provided=true. Follow up with the same calls tosetText()
.Example
(Using approach 2)
And in your ui.xml file: