Hello Everybody,
I am facing some strange issues with radgrid with below settings.
Issues:
#1. FrozenColumn does not work with IE 6
#2. In firefox + IE8 Horizontal Scroll bar moves with a jerk
#3. Horizontal scroll bar is not smooth.
I have created a datatable at runtime to bind RadGrid.
Any help regarding this will be deeply appreciated.
Radgrid Settings:
-- RadcodeBlock Starts
function GridCreated(sender, args)
{
var scrollArea = sender.GridDataDiv;
var dataHeight = sender.get_masterTableView().get_element().clientHeight;
scrollArea.style.height = dataHeight + 17 + "px";
}
--RadcodeBlock Ends
<telerik:RadGrid ID="rdgrdMarkBookView" runat="server" OnNeedDataSource="rdgrdMarkBookView_NeedSource" CssClass="flat" PagerStyle-AlwaysVisible="true"
AutoGenerateColumns="true" AllowPaging="true" ExportSettings-IgnorePaging="true"
AllowSorting="true" GridLines="None" Font-Size="9px" ItemStyle-Font-Size="9px" Width="970px" PageSize="50"
ShowGroupPanel="false">
<PagerStyle Mode="NextPrevAndNumeric"></PagerStyle>
<MasterTableView AllowMultiColumnSorting="True" EnableHeaderContextMenu="true"
AllowPaging="true" ItemStyle-Font-Size="9px" AlternatingItemStyle-Font-Size="9px"
TableLayout="Auto" >
</MasterTableView>
<HeaderStyle Width="100px" />
<ClientSettings AllowDragToGroup="True" AllowRowsDragDrop="true" AllowColumnsReorder="true"
ReorderColumnsOnClient="true" >
<Selecting AllowRowSelect="True"></Selecting>
<Scrolling AllowScroll="true" UseStaticHeaders="True" SaveScrollPosition="true" FrozenColumnsCount="1" ></Scrolling>
<ClientEvents OnGridCreated="GridCreated" />
<ClientMessages DragToGroupOrReorder="Drag to group" />
</ClientSettings>
<ExportSettings IgnorePaging="True" OpenInNewWindow="True" ExportOnlyData="True">
<Excel Format="ExcelML" />
</ExportSettings>
</telerik:RadGrid>
Thanks
Himanshu