If you want to inset what your building with the uiBinder model into a
specific bit of html then you will have to use
RootPanel.get("module1").  You don't explain what you are doing to
instantiate and add the uiBinder widget to the RootPanel.  If you had
a widget that was working before trying to port it to the uiBinder
model then how you add it to you page shouldn't change.

--
Kerr

On Apr 27, 4:01 pm, suresh <[email protected]> wrote:
> I'm porting my gwt module to GWT2.0 UiBinder model. Current GWT
> application is embedded in jsp. Jsp has header which has links to
> other modules and footer and some graphics that can change.
>
> When I try to use RootPanel, nothing gets displayed except the header
> and footer.
> RootPanel root = RootPanel.get("module1");
>
> Below is working but I cannot insert headers and footers which are
> shared across the other modules.
> RootLayoutPanel root = RootLayoutPanel.get();
>
> Here is the jsp file
>     <table width="100%" height="100%">
>         <tr><td height="50">
>          <%@ include file="/WEB-INF/jsp/header.jsp" %>
>       </td></tr>
>
>         <tr><td id="module1">
>         </td></tr>
>
>     <tr><td height="100">
>         <%@ include file="/WEB-INF/jsp/footer.jsp" %>
>     </td></tr>
>     </table>
>
> Please help me.
>
> Thanks in advance! Suresh
>
> --
> 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 
> athttp://groups.google.com/group/google-web-toolkit?hl=en.

-- 
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