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
250
Grid Overflow Problem in IE
posted

 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?

Parents
  • 7694
    posted

    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.

Reply Children