Infragistics Home

Infragistics Forums

Infragistics community online discussions.
Welcome to Infragistics Forums Sign in | FAQ
in Search

WebPanel in IE7

Last post 08-07-2008 23:27 by [Infragistics] Rumen Stankov. 1 replies.
Page 1 of 1 (2 items)
Sort Posts: Previous Next
  • 08-01-2008 11:29

    • sterzeld
    • Not Ranked
    • Joined on 08-01-2008
    • Points 40

    WebPanel in IE7

    We are using webpanels extensively in our web site, and we have other server controls inside these panels, mostly ultrawebgrids. Now this all works fine in IE6. But in IE7 the controls placed inside the panels are not displaying properly, they look like hanging outside the panels or overlapping with the panels.

    Anybody knows how to fix this?

     

    • Post Points: 20
  • 08-07-2008 23:27 In reply to

    Re: WebPanel in IE7

    Hello,

    I am not 100% sure, but I think the problem you report is similar to the one discussed in this forum thread:

    http://forums.infragistics.com/forums/t/11738.aspx

    A possible solution you may try is to run the following javascript in the grid client side InitializeLayoutHandler event

    <ClientSideEvents InitializeLayoutHandler="UltraWebGrid_InitializeLayoutHandler" />

    to the displaylayout section with the following JS

    <script type="text/javascript" >
    function UltraWebGrid_InitializeLayoutHandler(gridName)

    {
     var grid = igtbl_getGridById(gridName);
     var div = grid.getDivElement();
     div.style.position="relative";
    }
    </script>

     Hope this helps.

    Best Regards,
    Rumen Stankov (MCSD.NET)
    The Infragistics ASP.NET Team
    • Post Points: 5
Page 1 of 1 (2 items)
Powered by Community Server (Commercial Edition), by Telligent Systems