The next GWT Developments, will have alternatives to the VerticalPanel
and HorizontalPanel, using no table tags??
http://en.wikipedia.org/wiki/Tableless_web_design

For instance, the HorizontalPanel could have a alternative named
HorizontalFlowPanel, that instead of generate this code:

<table>
 <tr>
  <td>
   cell1
  </td>
  <td>
   cell2
  </td>
 </tr>
</table>

Generate that:

<div style="float:left">
 cell1
</div>
<div style="float:left">
 cell2
</div>

This alternative is lighter for the browser, and for the developer
when we needs to know what code are GWT generating. You have some
development in this area?

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to