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

flextable, gwt

Solution

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> 

Problem

Where can I find a UiBinder template for the FlexTable? I am using Google Web Toolkit (GWT).

Original source