无法找到GWT bootstrap3 FlexTable

时间:2014-08-08 07:13:10

标签: gwtbootstrap3

任何人都对GWT Bootstrap3中的FlexTable有任何想法。 我经常搜索,但无法在GWT Bootstrap3中找到灵活的东西。

1 个答案:

答案 0 :(得分:0)

您可能需要查看Bootstrap grid system,Gwtbootstrap3正在使用it as well

您可以使用UiBinder设置基础网格:

<b:Container ui:field="container">
  <b:Row>
    <b:Column size="MD_4">...</b:Column>
    <b:Column size="MD_4">...</b:Column>
  </b:Row>
</b:Container>

以编程方式轻松添加行和列:

@UiField
Container container;

Row row = new Row();

Column column = new Column(ColumnSize.MD_4);
column.add(new Label("Test"));

row.add(column);
container.add(row);

因此,您可以随意设置和更改网格。