I have downloaded a trial version of RadControls for ASPNET AJAX Q1 2009 and come acoss of the following issues, just wantt o confirm whether it is related to the trial:
1. "Error: Sys.WebForms.PageRequestManagerParserErrorException: The
message received from the server could not be parsed. Common
causes for this error are when the response is modified by calls to
Response.Write(), response filters, HttpModules, or server trace is
enabled."
2. Cannot load a user control with embedded RadGrid in the content page:
"Control 'ctl00_ctl01_RadGridRolesPanel' of type 'OurUpdatePanel' must be placed inside a form tag with runat=server."
The code is as below:
UserControl ctrl = this.LoadControl("~/User Controls/Roles.ascx") as UserControl;
this.Page.Controls.Add(ctrl);
3. If I move the javascript from the master page to the .js file:
function InitiateAsyncRequestComboBox(sender, eventArgs) {
var ajaxPanel = $find("<%= RadAjaxPanel1.ClientID %>");
ajaxPanel.ajaxRequest("SelectedApplication:" + eventArgs.get_item().get_text());
}
function InitiateAsyncRequestPanelBar(sender, eventArgs) {
var ajaxPanel = $find("<%= RadAjaxPanel1.ClientID %>");
ajaxPanel.ajaxRequest("ClickedItem:" + eventArgs.get_item().get_text());
}
the above ajaxPanel returns null. However, leaving it into the site.master file is not debugable.
Cheers
William