Hi there,
I have a RadGrid control with configured sorting and paging. Grid Sorting is working with Postbacks.
Once i configure RadAjaxManager to update the RadGird control through Ajax when the control changes. sorting of a column works the first time a column header is clicked. When a column header is clicked a second time, I receive an error "updatePanelElement.innerHTML=rendering".
Here is the Code:
Grid Properties:
Anyone have any suggestions on how to fix?
Thanks in Advance
-Hari
I have a RadGrid control with configured sorting and paging. Grid Sorting is working with Postbacks.
Once i configure RadAjaxManager to update the RadGird control through Ajax when the control changes. sorting of a column works the first time a column header is clicked. When a column header is clicked a second time, I receive an error "updatePanelElement.innerHTML=rendering".
Here is the Code:
<
telerik:RadScriptManager ID="RadScriptManager1" runat="server" AjaxFrameworkMode="Enabled" />
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="myGrid">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="myGrid" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" />
Grid Properties:
<
telerik:RadGrid ID="myGrid" runat="server" AutoGenerateColumns="False"
AllowSorting="True" AllowPaging="True" AllowCustomPaging="True" PageSize="5"
AllowFilteringByColumn="True" OnDataBinding="myGrid_DataBinding" OnPageIndexChanged="myGrid_PageIndexChanged"
OnSortCommand="myGrid_SortCommand" CellSpacing="0"
GridLines="None" EnableAjaxSkinRendering="False"
onneeddatasource="myGrid_NeedDataSource">
Anyone have any suggestions on how to fix?
Thanks in Advance
-Hari