I am using Rad grid with
AllowAutomaticInserts
="false" AllowAutomaticUpdates="false"
I am handling inserts and updates in code behind (C#) using item command event of rad grid and some of the columns of rad grid are button columns on click of that I am opening another Panel.
I want to apply ajax on my grid
Following is the code I am using
<
telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="radgridUserMgt">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="radgridUserMgt" LoadingPanelID="RadAjaxLoadingPanelGrid" />
<telerik:AjaxUpdatedControl ControlID="RadWindowManager1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
Problem is that My Add and Update functionalities are not working.When I click on Add or Edit It just show me the loading panel for long time and does not open the edit form to add or update.
This is really a blocker for me.please help me ASAP.Help will be highly appreciated.
Ekta.