Due to the very limited silverlight editor, I've placed a silverlight html placeholder in my silverlight app that launches an aspx page that then contains the aspnet ajax radeditor. But I can't even get that to work. The webfront end is aspnet mvc, the web admin part is silverlight. I tried both an aspnet mvc page and a direct to aspx page to host the editor. I keep getting
"The ScriptManager must appear before any controls that need it"
But I do have a ScriptManager there on the page right after the form tag. I even tried dynamically creating a ScriptManager and adding it to the controls collection at index 0 and it then throws an exception that I can only have one ScriptManager.
Why can't radeditor find it?
aspx snippet:
<form id="EditorForm" runat="server" style="width:100%;height:100%">
<asp:ScriptManager id="ScriptManager" runat="server" />
<telerik:RadEditor ID="RadEditor" runat="server" SkinID="DefaultSetOfTools" Width="100%" Height="100%">
"The ScriptManager must appear before any controls that need it"
But I do have a ScriptManager there on the page right after the form tag. I even tried dynamically creating a ScriptManager and adding it to the controls collection at index 0 and it then throws an exception that I can only have one ScriptManager.
Why can't radeditor find it?
aspx snippet:
<form id="EditorForm" runat="server" style="width:100%;height:100%">
<asp:ScriptManager id="ScriptManager" runat="server" />
<telerik:RadEditor ID="RadEditor" runat="server" SkinID="DefaultSetOfTools" Width="100%" Height="100%">
