Hi Telerik,
I have a RadGrid with EditFormType="WebUserControl" .
In the webusercontrol, there is a button clicking which will update a textbox's text.
The problem is that when I click the button in the editform, it will reload the entire grid each time.
But the only important behavior I want is to make it no reloading the entire grid when clicking the button.
To reach the goad, I tried to add an AjaxManagerProxy into the web user control.
The code is as below:
    
However, the RadAjaxManagerProxy seems not to work... When I click the button, it still reload the whold grid.
What should I do in this case?
                                I have a RadGrid with EditFormType="WebUserControl" .
In the webusercontrol, there is a button clicking which will update a textbox's text.
The problem is that when I click the button in the editform, it will reload the entire grid each time.
But the only important behavior I want is to make it no reloading the entire grid when clicking the button.
To reach the goad, I tried to add an AjaxManagerProxy into the web user control.
The code is as below:
| 
             <% --There is code fragment in web user control EditForm.ascx--%> telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">  | 
        
| <AjaxSettings> | 
| <telerik:AjaxSetting AjaxControlID="btnSubmit"> | 
| <UpdatedControls> | 
| <telerik:AjaxUpdatedControl ControlID="textCompanyName" /> | 
| <telerik:AjaxUpdatedControl ControlID="textProjectName" /> | 
| </UpdatedControls> | 
| </telerik:AjaxSetting> | 
| </AjaxSettings> | 
| </telerik:RadAjaxManagerProxy> | 
However, the RadAjaxManagerProxy seems not to work... When I click the button, it still reload the whold grid.
What should I do in this case?