java - FlexTable with Uibinder or alternatives -


what's best way use flextable in corperation uibinder, know have provide , initiate befor initwidget

@uifield(provided = true) flextable contenttable; 

but need table input matrix like:

pseudo:   label."name: " textbox()   label."password: " textbox()  

know idea consider flextable or there better alternativ? help.

i'll pass on fact using table form layout not best option nor practice.

you can use htmlpanel uibinder, , in html "normal" page, additional gwt tags widgets :

<g:htmlpanel>    <div class="forminput">       <g:label text="first name - w3c style : ">       <g:textbox ui:field="firstnametextbox">    </div>      <table>      <tbody>         <tr>             <td>last name - table style :</td>             <td><g:textbox ui:field="lastnametextbox" /></td>         </tr>         <tr>             <!-- other form fields -->         </tr>      </tbody>    </table> </g:htmlpanel> 

Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -