Hello Telerik,
I am facing an issue in scrolling.The header sections are moved out of Div area to the right side and the items are only can be viewed correctly in the div section.
I set the following properties to set the Scrolling in Grid
CS
ASPX
But my Grid seemed not in working well with scrolling.
-Thanks
I am facing an issue in scrolling.The header sections are moved out of Div area to the right side and the items are only can be viewed correctly in the div section.
I set the following properties to set the Scrolling in Grid
CS
| RadFirmGrid.ClientSettings.Scrolling.AllowScroll = true; |
| RadFirmGrid.ClientSettings.Scrolling.UseStaticHeaders = true; |
| RadFirmGrid.ClientSettings.Scrolling.SaveScrollPosition = true; |
| RadFirmGrid.ClientSettings.Scrolling.ScrollHeight = Unit.Pixel(500); |
ASPX
| <div align="center"> |
| <div class="page"> |
| <table class="insertdata" cellspacing="0" cellpadding="0" width="100%" border="0"> |
| <tr> |
| <td class="sectionhdr" colspan="2" width="30%" align="left" style="border-bottom: 1px black solid;"> |
| Firm Profile<span style="color: #0000c0"><asp:Label ID="isd" runat="server" /></span> |
| </td> |
| </tr> |
| <tr> |
| <td class="spacerrow" colspan="2"> |
| </td> |
| </tr> |
| </table> |
| <asp:ScriptManager ID="ScriptManager1" EnablePartialRendering="false" runat="server"> |
| </asp:ScriptManager> |
| <telerik:RadAjaxManager ID="radAjaxManager" runat="server" ClientEvents-OnRequestStart="requestStart" |
| OnAjaxSettingCreating="radAjaxManager_AjaxSettingCreating"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="RadFirmGrid"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadFirmGrid" LoadingPanelID="ajaxLoadingPanel" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| <ClientEvents OnRequestStart="requestStart" /> |
| </telerik:RadAjaxManager> |
| <telerik:RadGrid ID="RadGrid" runat="server" ShowFooter="true" HorizontalAlign="Left" Width="100%" |
| MasterTableView-HierarchyLoadMode="ServerBind" |
| ClientSettings-AllowExpandCollapse="true" |
| Skin="Vista" AllowFilteringByColumn="true" |
| AutoGenerateColumns="False" AllowSorting="True" |
| AllowMultiRowSelection="False" AllowPaging="True" |
| OnNeedDataSource="RadGrid_NeedDataSource" OnUpdateCommand="RadGrid_UpdateCommand" |
| OnItemDataBound="RadGrid_ItemDataBound" |
| OnPreRender="RadGrid_PreRender" oninsertcommand="RadGrid_InsertCommand" |
| onitemcommand="RadGrid_ItemCommand" EnableLinqExpressions="false" |
| onitemcreated="RadGrid_ItemCreated"> |
But my Grid seemed not in working well with scrolling.
-Thanks
