I have a master page which has an instance of the RadAjaxManager on it (Named RadAjax). I have a content page which has options to open a window (RadWindow). When you click on a button on this open window it injects some JavaScript that is supposed to force a refresh of the calling page, then close itself. I'm in the process of trying to update to the AJAX version of the controls and things aren't quite working.
In my first content page, I have this JavaScript function:
I know this function is getting called correctly from my "pop in" form. However, ajaxManager is null so the rebind never occurs. I looked at the generated JS in the page and the markup is getting translated to this, which looks correct. What am I missing?
In my first content page, I have this JavaScript function:
var ajaxManager = $find("<%= Telerik.Web.UI.RadAjaxManager.GetCurrent(Page).ClientID %>"); |
ajaxManager.ajaxRequest("Rebind"); |
I know this function is getting called correctly from my "pop in" form. However, ajaxManager is null so the rebind never occurs. I looked at the generated JS in the page and the markup is getting translated to this, which looks correct. What am I missing?
var ajaxManager = $find("ctl00_RadAjax"); |