gwt - How to use HTMLTable in UiBinder? -
why there're no info how use htmltable in uibinder on internet?
i tried simple code:
<g:htmltable> <g:row> <c:cell> <b>my info</b> </c:cell> </g:row> </g:htmltable>
after ran, showed no class matching "row" in urn:import:com.google.gwt.user.client.ui: <g:row>
error.
is there know how use it?
there's nothing said because there's say.
to begin with, htmltable
abstract class, base of flextable
, grid
. flextable
cannot have children configured via uibinder, contrary grid
(and documented in javadoc).
if you're going change contents of table dynamically after it's constructed, can use grid
(or flextable
). otherwise, there's no reason use such widgets, put <table>
within htmlpanel
.
Comments
Post a Comment