How can I add rows to a Google Web Toolkit flextable in the UiBinder?

dev picture dev · Feb 17, 2010 · Viewed 10.1k times · Source

Where can I find a UiBinder template for the FlexTable?

I am using Google Web Toolkit (GWT).

Answer

Chris Novak picture Chris Novak · Feb 17, 2010

I found a link text that said if you do not need to handle events, you can just use straight HTML instead of FlexTable for layout:

<g:HTMLPanel>
   <table>
    <tr><td>Info:</td><td><g:TextBox ui:field="infoTextBox"/></td></tr>
  </table>
</g:HTMLPanel>