我在我的网络应用程序中使用 gwt,并且我有一个包含<table>
. 我选择这样做而不是 flextable,因为在将其设置为无法执行时会出现一些烦人的问题<tbody valign="top">
。
我想知道是否可以包装一个 html 表格
<table>
<thead>
<tr>
<th>Name</th>
<th>Path</th>
<th>Type</th>
</tr>
</thead>
</table>
在像 Flextable 这样的类中,我可以通过 Java 轻松控制行和列?
就像是
Label.wrap("id");
但对于桌子。