Hi
I'm using Infragistics Ultraweb Grid 8.2.20082.2011 version, when i populate data in grid the data panel get over flow in IE 6 and 7 , but not in firefox, i have tried to put div sorund the gid with style="Position:relative" but it doen't solve the gird overflow , and this hapens inside infragistic web tab control, what is the problem should be and any solution?
Hello,
You can input UltraWebGrid in div and set style position: relative; and overflow: scroll;
Please take a look at the code below:<div style="position: relative; overflow: scroll; height: 100px; width: 100px"><igtbl:UltraWebGrid ID="UltraWebGrid1" runat="server" Height="200px" Width="325px" DataSourceID="SqlDataSource1"></igtbl:UltraWebGrid></div>
Hope this helps.
Yes i have tried this one this is a temp solution but it makes UI look ugly and not consistance, this effect only occur when populating data to grid in spcified with and hight the scroll will hide and data panel with overflow - this happenes in IE only , so i need workgound solution that make panel stay inside grid. not like solution given
I answered in the other thread;
http://forums.infragistics.com/forums/p/20779/74941.aspx#74941
I hope this is ok
Maybe you can try the suggestion in this forum thread:
http://forums.infragistics.com/forums/p/8836/34602.aspx#34602
Enclose the grid in a div tag and set the height of div tag to percentage
Set the following properties for the grid:
<FrameStyle Height="100%"../>
< /DisplayLayout>
I had similar problems as well. Basically it boils down to forcing height to fixed position. There was a forum post where someone was resizing the grid when the broswer was resized but I could never get it to truly work to 100% height.
I'm facing similar problems.
I tried your solution with the div Tags but with width=100% and height=100% but this looks very ugly (scrollbars from the div and scrollbars from IE mixed).
Is there any best practice in how to get the grid sized correctly? (Without any absolut postions like width="100px" and the possibility to scroll the grid itself, or scroll it through a div that scrolls or any html elemnt?)