This is a migrated thread and some comments may be shown as answers.

Avoiding Page Refresh when EditTemplate Displays

2 Answers 50 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Reid
Top achievements
Rank 2
Reid asked on 12 Jan 2009, 04:28 PM
Is there a way to avoid the page refresh when the edit link on a row is clicked and the MasterTemplateEditForm is shown?

2 Answers, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 13 Jan 2009, 04:06 AM
Hi,

I would suggest you to Ajaxify the Grid using AjaxManager to prevent page refresh on clicking the edit link.

ASPX:
 <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
            <AjaxSettings> 
                <telerik:AjaxSetting AjaxControlID="RadGrid1"
                    <UpdatedControls> 
                        <telerik:AjaxUpdatedControl ControlID="RadGrid1" /> 
                    </UpdatedControls> 
                </telerik:AjaxSetting> 
            </AjaxSettings> 
        </telerik:RadAjaxManager> 

<telerik:RadGrid ID="RadGrid1" Skin="Office2007" AllowPaging="true" DataSourceID="SqlDataSource1" 
            runat="server" OnItemCreated="RadGrid1_ItemCreated"
            
        </telerik:RadGrid> 
  

Thanks
Shinu
0
Reid
Top achievements
Rank 2
answered on 16 Jan 2009, 04:30 PM
Thank you Shinu for the answer to my question.
Tags
Grid
Asked by
Reid
Top achievements
Rank 2
Answers by
Shinu
Top achievements
Rank 2
Reid
Top achievements
Rank 2
Share this question
or