Is it possible to setup RadEditor to pull styles from a different domain? For example, taking your example from the help page:
Can I do something like this:
If not directly, do you have any recommendations on how I could implement something like this? I'm building a rather large CMS that will control content for multiple sites inside a single area and within the editor I would like for styles that show up to mimic the ones actually on the site being edited.
                                <telerik:RadEditor runat="server" ID="RadEditor1">    <CssFiles>        <telerik:EditorCssFile Value="~/ExternalCssFiles/Styles1.css" />        <telerik:EditorCssFile Value="~/ExternalCssFiles/Styles2.css" />    </CssFiles></telerik:RadEditor>Can I do something like this:
<telerik:RadEditor runat="server" ID="RadEditor1">    <CssFiles>        <telerik:EditorCssFile Value="http://www.mysite.com/styles/Styles1.css" />        <telerik:EditorCssFile Value="http://www.mysite.com/styles/Styles2.css" />    </CssFiles></telerik:RadEditor>If not directly, do you have any recommendations on how I could implement something like this? I'm building a rather large CMS that will control content for multiple sites inside a single area and within the editor I would like for styles that show up to mimic the ones actually on the site being edited.
