Can you post some code? I just upgraded a VM session to IE7 and it tested fine. Basically, all I have on the page is some text, then a modal popup with an FCKeditor in it. When I bring up the editor I can edit right away.
I'm having this exact same problem in Firefox. Richard, I don't see how the javascript function and modal popup you have relate. Can you post a more complete example?
RE: FCK, ModalPopupExtender not playing nice!
Instead of using a link button I use a javascript function to display the modal popup. So I have the following as my JS function:
<script language="javascript">
function openPopup()
{
$find('MP1').show();
FCKeditorAPI.GetInstance("ctl00_MainContent_lblBody").EditorDocument.designMode = "on";
}
Where the first item shows the modal popup and the second line sets the editor designmode. For reference, here is the modal popup I'm using:
<ajaxToolkit:ModalPopupExtender runat="server" ID="MP1" BehaviorID="MP1"
TargetControlID="lnkButton" PopupControlID="pnlModal" BackgroundCssClass="modalBackground"
DropShadow="true" OkControlID="OkButton" OnOkScript="onOk()" OnCancelScript="onCancel()" CancelControlID="CancelButton" />
Richard
RE: FCK, ModalPopupExtender not playing nice!
Thanks for the reply, and this works great on FF and IE6 as you state, but it's all borked up on IE7...
Has anyone found a solution to this for IE7?
Ric
RE: FCK, ModalPopupExtender not playing nice!
Richard
Re: FCK, ModalPopupExtender not playing nice!
Thanks,
Totenkopf