我正在实现一个同时具有 colspan 和 rowspan 单元格的表。我以前使用过 FlexTable,但后来决定使用 CellTable。但看起来 CellTable 不支持添加样式,而 FlexTable 支持...请查看图片以了解我要做什么:
欢迎任何建议。
您可以使用AbstractCellTableBuilder来呈现您自己的结构。
看看Custom DataGrid 展示。
;
FlexTable table = new FlexTable();
FlexTable.FlexCellFormatter flexCellFormatter =table.getFlexCellFormatter();
flexCellFormatter.setColSpan(3,0,2);
final TextBox textBox = new TextBox();
Label label = new Label();
label.setText("Name");
table.setWidget(0, 0, label);
table.setWidget(0, 1, textBox);
final TextBox textBox1 = new TextBox();
Label label1 = new Label();
label1.setText("Surname");
table.setWidget(1,0,label1);
table.setWidget(1, 1, textBox1);
final TextBox textBox2 = new TextBox();
Label label2 = new Label();
label2.setText("e-mail");
table.setWidget(2,0, label2);
table.setWidget(2, 1, textBox2);
Button button = new Button("apply", new ClickHandler() {
@Override``
public void onClick(ClickEvent event) {
String name = textBox.getText();
String surname = textBox1.getText();
Window.alert("Your name is " + name + "Your surname is " + surname);
}
});
table.setWidget(3, 0, button);//Write this code, then run, you can answer! goodLuck :-))