Hi,
I have Rad Grid with 13 columns so i have set
If I change the page size everything is working fine. but if i move to the last column using horizontal scroll bar and by changing the page size the columns are getting mixed.
say my page size is 5..on page load the visible columns are C1, C2, C3, C4. if i move to last columns C10, C11, C12, C13 and changing the page size to 10, the first 5 rows display C10, C11, C12, C13 where as last 5 rows display C1, C2, C3, C4.
html of my grid
Can anyone syggest me on this issue
I have Rad Grid with 13 columns so i have set
If I change the page size everything is working fine. but if i move to the last column using horizontal scroll bar and by changing the page size the columns are getting mixed.
say my page size is 5..on page load the visible columns are C1, C2, C3, C4. if i move to last columns C10, C11, C12, C13 and changing the page size to 10, the first 5 rows display C10, C11, C12, C13 where as last 5 rows display C1, C2, C3, C4.
html of my grid
<telerik:RadGrid ID="grdLineManagement" runat="server" AllowFilteringByColumn="true" AllowCustomPaging = "true" EnableEmbeddedSkins="false" Skin="eMod" AllowPaging="true" PageSize="10" Width="926" GridLines="None" AllowSorting="true" OnInit="grdLineManagement_Init"> <ClientSettings AllowColumnsReorder="false" ReorderColumnsOnClient="true"> <DataBinding Location="../Services/ManageLinesService.asmx" SelectMethod="GetChassisPoolLines" /> <Resizing AllowResizeToFit="true" AllowColumnResize="true" /> <ClientEvents OnCommand="grdLineManagement_Command" OnRowDataBound="grdLineManagement_RowDataBound"/> <Scrolling AllowScroll="true" ScrollHeight="" UseStaticHeaders="true" FrozenColumnsCount="1" /> </ClientSettings> <PagerStyle AlwaysVisible="True" PageButtonCount="5" /> <FilterMenu EnableImageSprites="False"> </FilterMenu> <MasterTableView TableLayout="Fixed" CommandItemDisplay="Top" HierarchyLoadMode="Client" ExpandCollapseColumn-Visible="false" > <CommandItemTemplate> <div class='fr tm10 bm10'>Export: <asp:ImageButton ID="btnExcel" runat="server" ImageUrl="~/IMAGES/CONTROLS/ExcelExport.jpg" onclick="btnExcel_Click"/> <asp:ImageButton ID="btnPdf" runat="server" ImageUrl="~/IMAGES/CONTROLS/ExportPDF.jpg" onclick="btnPdf_Click" /></div> </CommandItemTemplate> <Columns> <telerik:GridButtonColumn UniqueName="Edit" HeaderStyle-Width="50" Text="Edit" CommandName="Edit"> </telerik:GridButtonColumn> <telerik:GridBoundColumn HeaderStyle-Width="180" FilterControlWidth="68px" DataField="ChassisPoolLineId" HeaderText="ChassisPoolLineId" UniqueName="ChassisPoolLineId" FilterListOptions="VaryByDataType" Visible="false"> </telerik:GridBoundColumn> ...... <telerik:GridBoundColumn HeaderStyle-Width="125" HeaderStyle-Font-Bold="true" FilterControlWidth="85px" DataField="SalesTaxRate" DataType="System.Decimal" HeaderText="Sales Tax Rate" UniqueName="SalesTaxRate" FilterListOptions="VaryByDataType" ItemStyle-HorizontalAlign="Right" HeaderStyle-HorizontalAlign="Right"> </telerik:GridBoundColumn> </Columns> <NestedViewTemplate> </NestedViewTemplate> <CommandItemSettings ShowAddNewRecordButton="false" ShowRefreshButton="false" ShowExportToExcelButton="true" /> </MasterTableView> </telerik:RadGrid>Can anyone syggest me on this issue