How do i initiate an ajax event, i would like to reload/rebind the grid after every save function on a page, the code below shows what i have done so far but i think im missing the final part of initing the event that trigers AJax Reload.
Html Code
<
telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="rdgContacts">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rdgContacts"/>
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
Code behind
protected
void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
rdgContacts.Rebind();
}