Hi,
I have an .aspx page with a master page and two controls. One control (UserControl1) contains a linkButton and the other control (UserControl2) contains a RadGrid. My goal is to update the radgrid of UserControl2 on click of the linkbutton of UserControl1. Now I have inserted this code in the aspx page
<telerik:RadAjaxManager runat="server" ID="RadAjaxManager1">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="ctl00_ContentPlaceHolder_Center_CategorySearch1_LinkButton_AdvanceSearch">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="ctl00_ContentPlaceHolder_Center_ViewCategories1_GridView_Report" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
The problem is that the code still does the postback. What shall i do to solve this problem. Do i use the RadAjaxManagerProxy?? if if then in which control shall i write it and how to get the the id of the other control(Button or grid).
One more questation how to get the clientId of the control. shall i use the javascript to get it???
I have an .aspx page with a master page and two controls. One control (UserControl1) contains a linkButton and the other control (UserControl2) contains a RadGrid. My goal is to update the radgrid of UserControl2 on click of the linkbutton of UserControl1. Now I have inserted this code in the aspx page
<telerik:RadAjaxManager runat="server" ID="RadAjaxManager1">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="ctl00_ContentPlaceHolder_Center_CategorySearch1_LinkButton_AdvanceSearch">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="ctl00_ContentPlaceHolder_Center_ViewCategories1_GridView_Report" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
The problem is that the code still does the postback. What shall i do to solve this problem. Do i use the RadAjaxManagerProxy?? if if then in which control shall i write it and how to get the the id of the other control(Button or grid).
One more questation how to get the clientId of the control. shall i use the javascript to get it???