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
Thank you, David Young.
I run example above on localhost then vertical scroll bar is displayed. But when I publish it on Server, after I run by IE 8 on my computer, then vertical scroll bar is not displayed.
Is this issue caused by speed internet? If I run by browser on Server directly , then It work fine with vertical scroll bar.
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