Hi all, I am using smart gwt to develop my application, to create the structure of the application i am using gwt components. The HTML code snippet is as below:
In my pagePanel div all the components are added. As i add components dynamically in the pagePanel div, the pagePanel div does not enlarges as per the size of the added component and the added smart gwt components overflows the pagePanel div. So i need to give css to each and every div of smart gwt, But as the Gwt generates HTML structure on its own it is not possible to find all the div in code. As, I am using flex table to structure my page, FlexTable is added in Canvas of smart gwt. Canvas is added to initWidget of Composite super class. I gave css to flex table and canvas but between the canvas and flex table two more divs are generated and i can not get how to give css to these divs. as i am not able to find them in my code.
the code is as below: NTCanvas smartContainer = new NTCanvas(); smartContainer.setWidth("970px"); smartContainer.setStyleName("smart-container"); smartContainer.setStylePrimaryName("smart-container"); initWidget((Widget) smartContainer);
Can any body tell how to locate the gwt generated divs in code. Or how to solve the overflow problem of smart components from PagePanel div.
Thanks, Punam Purohit