I've found a weird bug if I create an infragistics webpanelCreate a table inside the template portion of the webPanelThen 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?
That fixed it, thank you!
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>