Hello:

I have the following code in a DockPanel:

                this.add(mainEastPanel, DockPanel.EAST);
                this.add(mainWestPanel, DockPanel.WEST);
                this.add(mainSouthPanel, DockPanel.SOUTH);
                this.add(mainNorthPanel, DockPanel.NORTH);
                this.add(mainCenterPanel, DockPanel.CENTER);
                this.setCellWidth(mainWestPanel, "100px");
                this.setCellWidth(mainEastPanel, "100px");
                this.setCellWidth(mainCenterPanel, "800px");
                this.setCellWidth(mainNorthPanel, "800px");
                this.setCellWidth(mainSouthPanel, "800px");


This code changes the style attribute on the cells.  But the cells
still have 'width="" height=""' which is negating the style attribute:

<td width="" height="" align="left" style="vertical-align: top; width:
800px;" colspan="1"><table cellspacing="0" cellpadding="0"><tbody><tr/
></tbody></table></td>

How do I get rid of the width and height attributes?  Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to