I have a structure similar to following
<g:TabLayoutPanel ui:field="rightTabPanel"
width="100%" height="100%"
barUnit="EM" barHeight="3">
<g:tab>
<g:header>Graph</g:header>
<g:FlowPanel ui:field="graphContent"/>
</g:tab>
<g:tab>
<g:header>Data</g:header>
<g:FlowPanel ui:field="dataContent"/>
</g:tab>
</g:TabLayoutPanel>
I have two tabs on of which shows the graph and another one shows data. However the content inside a tab is not visible. If I put
<g:FlowPanel ui:field="graphContent"/>
outside of TabLayoutPanel I can see the graph, but If I put as shown above the graph is not visible. Any clue would be helpful. thanks in advance.