On Fri, Nov 18, 2011 at 12:55 PM, Juan Pablo Gardella
<gardellajuanpa...@gmail.com> wrote:
> Well some news:
>
> - Showcase work on IE7.
>
> - If I removing the DockLayoutPanel (setting explicit dimensions on the
> DataGrid instead):
>
> DON'T WORK
>     <g:VerticalPanel addStyleNames='mainPanel'>
>         <g:DockLayoutPanel unit="PX" height="450px" width="700px">
>             <g:center>
>                 <c:DataGrid ui:field="resultTable" />
>             </g:center>
>         </g:DockLayoutPanel>
>     </g:VerticalPanel>
>
> WORKS:
>              <c:DataGrid ui:field="resultTable" height="450px"
> width="700px"/>
>
> So, it seems datagrid inside dockpanel doesn't work well on IE7.
>
> I'll continue with more tests.. Thanks Thomas

The problem is almost certainly your VerticalPanel (Thomas already
pointed that out). But I am not sure if setting the height and width
will remediate things...

Can you try to remove the VerticalPanel and check if it works?

Eg try that:

        <g:DockLayoutPanel unit="PX" height="450px" width="700px">
             <g:center>
                 <c:DataGrid ui:field="resultTable" />
             </g:center>>         </g:DockLayoutPanel>


Best,


Raphael

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to