Hi there,
I'm having problems with opening the hyperlink manager when the external CSS file linked to in the header points to a different domain. Basically, if the external CSS is not linked from the same domain, the hyperlink manager is totally unresponsive.
Specifically, here's my code:
If I copy the stylesheet to a space on the same domain as the page, then the hyperlink manager works as expected. However, this is not an option given the way our system is set up.
Is there anyway I can get the hyperlink manager to work when the CSS files is linked from a different domain?
Thanks,
DJ
I'm having problems with opening the hyperlink manager when the external CSS file linked to in the header points to a different domain. Basically, if the external CSS is not linked from the same domain, the hyperlink manager is totally unresponsive.
Specifically, here's my code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="radEditor_test.aspx.cs" %> |
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml" > |
<head runat="server"> |
<title></title> |
<link rel="stylesheet" type="text/css" href="http://a_different_domain.com/styles.css" /> |
</head> |
<body> |
<form id="form1" runat="server"> |
<div> |
<asp:ScriptManager ID="ScriptManager" runat="server" /> |
<telerik:RadEditor ID="radEditor" runat="server" Width="100%" EnableEmbeddedSkins="true" |
ToolsFile="~/Editor/ToolsFile.xml" EditModes="Design" NewLineBr="false" |
StripFormattingOnPaste="MSWordNoFonts, Css, Font, Span" ExternalDialogsPath="~/Editor" /> |
</div> |
</form> |
</body> |
</html> |
If I copy the stylesheet to a space on the same domain as the page, then the hyperlink manager works as expected. However, this is not an option given the way our system is set up.
Is there anyway I can get the hyperlink manager to work when the CSS files is linked from a different domain?
Thanks,
DJ