我在我的网络应用程序中使用gwt,并且我有一个包含<table>
的html面板。由于在将其设置为无法<tbody valign="top">
的样式时出现一些令人讨厌的问题,我选择这样做而不是灵活。
我想知道是否可以包装一个html表
<table>
<thead>
<tr>
<th>Name</th>
<th>Path</th>
<th>Type</th>
</tr>
</thead>
</table>
在像Flextable这样的类中,我可以通过Java轻松控制行和列?
像
这样的东西Label.wrap("id");
但是对于表格。
答案 0 :(得分:0)
您还可以在 FlexTable 中格式化数据。
您可以使用flexTable.getRowFormatter()
,flexTable.getColumnFormatter()
或flexTable.getColumnFormatter()
。
您可以使用上面的 FlexTable 属性将对齐方式,样式应用于行,列和单元格。
如果您遇到 FlexTable 的任何问题,请提供独立的测试用例。