I'm having a weird set of behavior, and it is very easy to reproduce.
Here is my aspx code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default2.aspx.cs" Inherits="RichTextTest.Controls.FCKEditor.Default2" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>
<!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>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:LinkButton ID="cmdEditCommentary" runat="server" Visible="true" Text="Edit Commentary" />
<asp:Panel ID="pnlCommentaryEdit" runat="server">
<asp:Label ID="lblCommentary" Font-Bold="true" Text="Enter Commentary:" runat="server"></asp:Label>
<br />
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server" AutoDetectLanguage="true" EnableXHTML="true" ToolbarCanCollapse="false" ToolbarSet="Basic"></FCKeditorV2:FCKeditor>
<br />
<asp:Button ID="cmdSave" runat="server" Text="Save" />
<asp:Button ID="cmdCancel" runat="server" Text="Cancel" />
</asp:Panel>
<cc1:ModalPopupExtender ID="mpeCommentary" runat="server"
TargetControlID="cmdEditCommentary"
PopupControlID="pnlCommentaryEdit"
DropShadow="false"
CancelControlID="cmdCancel" />
</div>
</form>
</body>
</html>
Now if you run this in IE, everything works fine. The popup comes up, and then you can select a font, or a text color, or style. No problems, BUT if you run it in FireFox, the Text Color, Style, Font, etc. opens up BEHIND the editor. Any thoughts on how I can pull this to the front?
Fri, 07/18/2008 - 18:00
#1
Re: Styles, Text Color, Font, appearing behind the Editor in Fir
Did you happen to solve this problem cause i am facing the exactly same issue.
Re: Styles, Text Color, Font, appearing behind the Editor in Fir
Searching the forum some more solved my problems, for those who might read this in the future :
the fix : viewtopic.php?f=6&t=11519