Hi all,
I have the following issue:
In Site.Master I have the following:
and, at the bottom of the page right before the closing body tag, I put my RadScriptManager declaration.
When my RadScriptManager is on the Master page, I encounter a weird error in my View. The view is acknowledging that it sees the RadScriptManager, but AJAX RadSplitter is saying that Telerik is undefined. If I move my RadScriptManager to the view page, removing it from the master page, AJAX RadSplitter works as expected.
Now, I was completely happy keeping my RadScriptManager on my view. I only use Telerik AJAX controls on this view. Unfortunately, I need the RadScriptManager on my Master Page in order to make the RadCodeBlock work on all pages which are not my view. If I remove the RadCodeBlock from Site.Master then my view throws an error mentioning the code blocks.
You see my problem? I have a circular reference of errors. Any suggestions on how to support this other than adding a ScriptManager to every other view?
I have the following issue:
In Site.Master I have the following:
<head runat="server"> <title> <asp:ContentPlaceHolder ID="TitleContent" runat="server" /> </title> <telerik:RadCodeBlock runat="server"> <%= Html.MinifyStylesheet("~/Content/Site.css") %> <%= Html.MinifyStylesheet("~/Content/dark-hive-custom/jquery-ui-1.7.2.custom.css")%> <%= string.Format("<link REL='SHORTCUT ICON' HREF='{0}'>", CompilationSymbol.IsCableSolve ? Html.ResolveUrl("~/content/images/cs_icon.ico") : Html.ResolveUrl("~/content/images/id.ico"))%> </telerik:RadCodeBlock> <asp:ContentPlaceHolder ID="CssContent" runat="server"> </asp:ContentPlaceHolder></head>and, at the bottom of the page right before the closing body tag, I put my RadScriptManager declaration.
When my RadScriptManager is on the Master page, I encounter a weird error in my View. The view is acknowledging that it sees the RadScriptManager, but AJAX RadSplitter is saying that Telerik is undefined. If I move my RadScriptManager to the view page, removing it from the master page, AJAX RadSplitter works as expected.
Now, I was completely happy keeping my RadScriptManager on my view. I only use Telerik AJAX controls on this view. Unfortunately, I need the RadScriptManager on my Master Page in order to make the RadCodeBlock work on all pages which are not my view. If I remove the RadCodeBlock from Site.Master then my view throws an error mentioning the code blocks.
You see my problem? I have a circular reference of errors. Any suggestions on how to support this other than adding a ScriptManager to every other view?