Hi there,
I came across an RadEditor inconsistent issue in IE, when I right click on the Editor, no context menu shows in IE, but I do get a context menu including cut, copy, paste in Firefox. I would like the Editor to show the context menu in both IE and Firefox. Is there anyone can help? Thanks a lot.
Following is my test code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="RadEditorTest.aspx.cs" Inherits="RadEditorTest" %>
<!DOCTYPE html>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
div
>
<
telerik:RadScriptManager
runat
=
"server"
ID
=
"RadScriptManager1"
/>
<
telerik:RadEditor
runat
=
"server"
ID
=
"tb_taskinstructionRichEdit"
EditModes
=
"Design"
Width
=
"99%"
Height
=
"200px"
>
<
Tools
>
<
telerik:EditorToolGroup
>
<
telerik:EditorTool
Name
=
"Bold"
></
telerik:EditorTool
>
<
telerik:EditorTool
Name
=
"Italic"
></
telerik:EditorTool
>
<
telerik:EditorTool
Name
=
"Underline"
></
telerik:EditorTool
>
<
telerik:EditorSeparator
></
telerik:EditorSeparator
>
<
telerik:EditorTool
Name
=
"ForeColor"
></
telerik:EditorTool
>
<
telerik:EditorTool
Name
=
"BackColor"
></
telerik:EditorTool
>
<
telerik:EditorSeparator
></
telerik:EditorSeparator
>
<
telerik:EditorTool
Name
=
"FontName"
></
telerik:EditorTool
>
<
telerik:EditorTool
Name
=
"RealFontSize"
></
telerik:EditorTool
>
<
telerik:EditorSeparator
></
telerik:EditorSeparator
>
<
telerik:EditorTool
Name
=
"Indent"
/>
<
telerik:EditorTool
Name
=
"Outdent"
/>
<
telerik:EditorTool
Name
=
"JustifyLeft"
/>
<
telerik:EditorTool
Name
=
"JustifyCenter"
/>
<
telerik:EditorTool
Name
=
"JustifyRight"
/>
<
telerik:EditorTool
Name
=
"JustifyFull"
/>
<
telerik:EditorTool
Name
=
"JustifyNone"
/>
<
telerik:EditorTool
Name
=
"InsertOrderedList"
/>
<
telerik:EditorTool
Name
=
"InsertUnOrderedList"
/>
<
telerik:EditorTool
Name
=
"InsertLink"
/>
<
telerik:EditorTool
Name
=
"InsertTableLight"
/>
<
telerik:EditorSeparator
></
telerik:EditorSeparator
>
<
telerik:EditorTool
Name
=
"Redo"
/>
<
telerik:EditorTool
Name
=
"Undo"
/>
</
telerik:EditorToolGroup
>
</
Tools
>
</
telerik:RadEditor
>
</
div
>
</
form
>
</
body
>
</
html
>