I have an aspx page that contains an asp:panel that has been ajaxified. This is working successfully for partial page refreshing within this panel.
There is one scenario that is not working. In the scenario, I dynamically create a user control inside the ajaxified panel, and inside that user control is a RadXmlHttpPanel.
I get the following javascript error when the page loads in the browser after the postback:
'EditModeStylectl00_cphLeft_ReportPage1_Filter1_63_selVen...' is undefined.
Within the Visual Studio debugger, I see the error is breaking inside this javascript function:
There is one scenario that is not working. In the scenario, I dynamically create a user control inside the ajaxified panel, and inside that user control is a RadXmlHttpPanel.
I get the following javascript error when the page loads in the browser after the postback:
'EditModeStylectl00_cphLeft_ReportPage1_Filter1_63_selVen...' is undefined.
Within the Visual Studio debugger, I see the error is breaking inside this javascript function:
function
Sys$_Application$add_init(handler)
I think maybe what is happening is that part of what is needed to make the RadXmlHttpPanel work correctly is coming within the response AFTER the end tag for the ajaxified panel. So after the postback, my browser is ignoring some of the javascript needed to properly wire up or initialize the RadXmlHttpPanel.
Is there a way to dynamically load a RadXmlHttpPanel inside an ajaxified panel without getting this error?
Thank you in advance for any help you can provide,
Mike