Using Q2 2014. If I receive the error:
uncaught TypeError: Cannot read property 'set_additionalQueryString' of null
WebResource.axd line 12175
The error occurs in the console (tested with Chrome and IE) when the DropDownList is changed (postback, but any postback will cause the problem).
Very specific case. The following code will reproduce. The failure appears to be related to RadEditor with shared toolbar (ToolProviderID).
- Removing the shared toolbar resolves the issue.
- Disabling AJAX resolves the issue.
- Removing the Refresh button or removing it from AAX resolves the issue.
However, I need all of the above to be enabled.
Any help or direction would be greatful. This error appears to be disabling pop-ups with RadWindow.
uncaught TypeError: Cannot read property 'set_additionalQueryString' of null
WebResource.axd line 12175
The error occurs in the console (tested with Chrome and IE) when the DropDownList is changed (postback, but any postback will cause the problem).
Very specific case. The following code will reproduce. The failure appears to be related to RadEditor with shared toolbar (ToolProviderID).
- Removing the shared toolbar resolves the issue.
- Disabling AJAX resolves the issue.
- Removing the Refresh button or removing it from AAX resolves the issue.
However, I need all of the above to be enabled.
<form id="form1" runat="server"><telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager><telerik:RadAjaxManager ID="AjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="btnRefresh"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="phFields" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManager><asp:placeholder id="phFields" runat="server"> <telerik:RadEditor ID="RadEditor1" runat="server"> </telerik:RadEditor> <telerik:RadEditor ID="RadEditor2" runat="server" ToolProviderID="RadEditor1"> </telerik:RadEditor> <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true"> <asp:ListItem Text="a"></asp:ListItem> <asp:ListItem Text="b"></asp:ListItem> <asp:ListItem Text="c"></asp:ListItem> </asp:DropDownList> </asp:placeholder><asp:button id="btnRefresh" runat="server" /></form>Any help or direction would be greatful. This error appears to be disabling pop-ups with RadWindow.
