Hello,
I have a radwindow that uses ContentTemplate, I need to update a radComboBox inside the ContetnTemplate on the event of a LinkButtom Clicked in a RadGrid Control
I tried using the AjaxManager like this
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="grd_limousine"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="wnd_UpdateStatusWindow" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManager>
I also tried to put the window inside a panel and set it as the control to be updated instead
the problem is that when I used the AjaxManager on the radWindow it started returning null in this code
function showWindow(windowID, url) { //window.radopen(null, 'wnd_UpdateStatusWindow'); var window = $find(windowID); window.show();}