Hi guys, I've been having problem for long time and can't find a way to fix it.
I have a UI xml like below <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui" xmlns:s="urn:import:com.smartgwt.client.widgets" xmlns:z="urn:import:com.dreamer.devcenter.client.utils.widgets" xmlns:t="urn:import:com.dreamer.devcenter.client.utils.tabs"> <g:DockLayoutPanel unit="EM" ui:field="dockLayoutPanel"> <g:north size="5"> <s:Img src='/img/devcenter.jpg' width="227" height="42" /> </g:north> <g:center size="100"> <g:HorizontalPanel ui:field="parentPanel"> <g:HorizontalPanel ui:field="menuPanel"> </g:HorizontalPanel> <g:Label ui:field="line" width="5" height="700" /> <g:TabLayoutPanel ui:field="tabLayoutPanel" barHeight="20" barUnit="EM" width="900" height="700" > <g:tab ui:field="tab1"> <g:header size='7'> <b>HTML</b> header </g:header> <g:Label>able</g:Label> </g:tab> </g:TabLayoutPanel> </g:HorizontalPanel> </g:center> <g:south size="5"> <s:Img src='/img/cprgt.gif' width="520" height="19" /> </g:south> </g:DockLayoutPanel> </ui:UiBinder> And I have a another UI xmls which I want to place in "menuPanel" and "tabLayoutPanel". This is how it supposed to works. I have a menu with few links and whenever I click it, I wanted to add new UI xml to the tabLayoutPanel. And somehow, I don't see any of menuPanel and tabLayoutPanel. Can you please help me on this? Thanks in advance. Menu.ui.xml is nothing but HTMLPanel and UI xmls which goes into tabLayoutPanel are wrapped SimplePanel or anykind of layout panels. -- 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.
