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
405
Issue with scrollbar on IE 8
posted

Hi,
  I am using WebDataGrid version 9.1.20091.2067. I have an problem with scrollbar on IE 8.
  The following is my code:

 <ig:WebSplitter ID="WebSplitter1" runat="server" Orientation="Horizontal" Width="100%">
  <Panes>

   <ig:SplitterPane runat="server" Size="100px" ScrollBars="Hidden">

   <Template>
    <ig:WebDataGrid ID="gridCustomers" runat="server" Height="100%" Width="100%"AutoGenerateColumns="False">
      <Behaviors>
       <ig:Filtering>
       </ig:Filtering>
       <ig:Sorting>
       </ig:Sorting>
      <ig:RowSelectors RowNumbering="true">
      </ig:RowSelectors>
      <ig:Selection CellClickAction="Row" CellSelectType="None" RowSelectType="Single">
       </ig:Selection>
      <ig:ColumnResizing> 
     </ig:ColumnResizing>   
    </Behaviors>
   <Columns>
     <ig:BoundDataField DataFieldName="FirstName" Key="FirstName">
     <Header Text="First Name" />
     </ig:BoundDataField>
     <ig:BoundDataField DataFieldName="LastName" Key="LastName">
      <Header Text="Last Name" />
     </ig:BoundDataField>
    </Columns>
   </ig:WebDataGrid>
  </Template>
  </ig:SplitterPane>
  </Panes>
</ig:WebSplitter>

 On the Grid has more than 100 rows, but the Grid don't show scollbar.

Please support me to resolve this issue.

Thanks,

Trung

 

Parents
No Data
Reply
  • 33839
    posted

    Trung,

    I tried your code, but I did see a scroll bar on the grid in IE 8.  One thing you might try doing, however, is to add BorderWidth="0px" to your grid.  It is possible your grid scrollbar is being cut off.  I assume you're talking about a vertical scroll bar, since it looks as if you want your grid not to have a horizontal one.

    Let us know if this works.

    regards,
    David Young

Children