This is the error...
Uncaught
Sys.WebForms.PageRequestManagerParserErrorException:
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.
Details:
Error parsing near ':"text/javascript"}
I have read some other older threads about this but I am not sure what the actual issue is. We just recently upgraded our telerik after a couple years and now this error is popping up everywhere. Never had this issue before. We use RadAjax Manager, RadAjax Panels, and RadAjax loading panels in a lot of places and that seems to be were the issue always pops up. Need some guidance on how to remedy this issue without having to downgrade the telerik version because we upgraded to fix other issues with radeditors and jquery. Please help when you can and let me know if you need more info.
Code example below...
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolderMain" runat="server">
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" EnableEmbeddedSkins="false" CssClass="rwLoading" Height="100%" Width="100%">
</telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1">
<asp:HiddenField ID="HiddenFieldLookupType" runat="server" Value="" />
<asp:HiddenField ID="HiddenFieldControlsToSet" runat="server" Value="" />
<table width="100%" border="0" cellspacing="2" cellpadding="0">
<tr>
<td align="center" valign="top">
<telerik:RadGrid ID="RadGridLookup" runat="server" AllowMultiRowSelection="False"
AllowPaging="True" PageSize="75" AllowFilteringByColumn="true" AllowSorting="False"
ShowStatusBar="false" ShowFooter="false" ShowHeader="True" AutoGenerateColumns="False"
GridLines="None" EnableEmbeddedSkins="True" GroupingSettings-CaseSensitive="false"
Width="580">
<PagerStyle Mode="NumericPages" Visible="False" AlwaysVisible="true" Position="Bottom"
Height="0px"></PagerStyle>
<StatusBarSettings LoadingText="Loading Data" ReadyText="Data Loaded." />
<ClientSettings EnablePostBackOnRowClick="False">
<Scrolling AllowScroll="true" EnableVirtualScrollPaging="True" ScrollHeight="250"
SaveScrollPosition="True" />
<Selecting AllowRowSelect="True" EnableDragToSelectRows="True" />
<ClientEvents OnRowDblClick="RadGridLookupRowDoubleClick" OnGridCreated="RadGridLookupGridCreated" />
</ClientSettings>
<MasterTableView DataKeyNames="code" TableLayout="auto">
<RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column">
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column">
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
<telerik:GridBoundColumn DataField="description" UniqueName="GridBoundColumnDescription"
FilterControlAltText="Filter column" FilterControlWidth="480" HeaderText="Search List"
CurrentFilterFunction="Contains" AutoPostBackOnFilter="false" ShowFilterIcon="True"
FilterDelay="1250">
<HeaderStyle HorizontalAlign="left" />
<ItemStyle HorizontalAlign="left" VerticalAlign="middle" />
</telerik:GridBoundColumn>
</Columns>
<ExpandCollapseColumn Visible="False">
</ExpandCollapseColumn>
<RowIndicatorColumn Visible="False">
</RowIndicatorColumn>
</MasterTableView>
</telerik:RadGrid>
</td>
</tr>
<tr>
<td>
<asp:CheckBox ID="CheckboxClosedJobs" runat="server" AutoPostBack="True" Checked="False"
EnableViewState="True" Text="Show closed/archived jobs?" />
</td>
</tr>
<tr>
<td align="center" valign="top">
<asp:Button ID="ButtonSelect" runat="server" Text="Select" />
<asp:Button ID="ButtonCancel" runat="server" Text="Cancel" OnClientClick="cancelClick();" />
</td>
</tr>
</table>
<input id="txtClient" runat="server" name="txtClient" type="hidden" />
<input id="txtDivision" runat="server" name="txtDivision" type="hidden" />
<input id="txtProduct" runat="server" name="txtProduct" type="hidden" />
<input id="txtJob" runat="server" name="txtJob" type="hidden" />
<input id="txtJobComp" runat="server" name="txtJobComp" type="hidden" />
<input id="txtType" runat="server" name="txtType" type="hidden" />
<input id="txtPO" runat="server" name="txtPO" type="hidden" />
<input id="txtCampaign" runat="server" name="txtCampaign" type="hidden" />
</telerik:RadAjaxPanel>