Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
115
Grid Disappears
posted

I've found a weird bug if I create an infragistics webpanel
Create a table inside the template portion of the webPanel
Then inside one of the <td> tags I put another control which contains an infragistics WebGrid

The screen comes up and the grid data flashes for a second but then it's gone, it turns all white inside of the grid.

 If I take my control out of the <td> tag everything renders fine or if I view it in Firefox it works fine.  This was working fine in 2007 V. 1 Hotfix 1045 but broke when i upgraded to 1071.

Any Ideas?

Parents
  • 28464
    Verified Answer
    posted

    I remember I have heard some problems about UltraWebGrid inside WebPanel, which seem related - the problem in that case was that the grid height was overflowing from the panel.

    Can you please try nesting the grid inside a div with position relative set? This seemed to solve the problem, e.g.

     <div style="position:relative">

        ... // UltraWebGrid here

    </div>

Reply Children
No Data