The code below produces a page with an fckeditor that freezes the whole IE window when you click on the radio button inside it.
This occurs when you click the radio button while the focus is NOT in the fckeditor window.
This didn't happen in fckeditor 2.4.3, but happens in both fckeditor 2.5 and 2.5.1.
Is there a workaround or should I wait for 2.5.2 for this to be solved? Has anyone any idea WHY fckeditor is freezing the window?
Thanks in advance for your help!
John
This occurs when you click the radio button while the focus is NOT in the fckeditor window.
<html>
<head>
<title>FCKeditor BUG</title>
<script type="text/javascript" src="/fckeditor25/fckeditor.js"></script>
</head>
<body>
<form method="POST">
<input type=text id='textInput' size="60" value='First put focus here by clicking'></input><br>My fckeditor below: <br>
<textarea id="bodyText">Then try to click the radiobutton<br><br>
<input type="radio"></input>My Radiobutton<br><br>
You will see the whole window being 'frozen', it will not react on clicking anymore.<br />
Even the tabs in IE won't respond anymore.<br>
The only way to get out of this situation is selecting another window.<br>
<br>This only happens in IE (tested in IE7), not in Firefox.<br>
Happens in fckeditor 2.5 and 2.5.1, not in 2.4.3.<br>
</textarea><br>
</form>
<script type="text/javascript">
var oFCKeditor = new FCKeditor('bodyText', '720px', '320');
oFCKeditor.BasePath = "/fckeditor25/";
oFCKeditor.ReplaceTextarea();
</script>
</body>
</html>
This didn't happen in fckeditor 2.4.3, but happens in both fckeditor 2.5 and 2.5.1.
Is there a workaround or should I wait for 2.5.2 for this to be solved? Has anyone any idea WHY fckeditor is freezing the window?
Thanks in advance for your help!
John

Re: Freeze of whole IE-window when clicking radiobutton
Re: Freeze of whole IE-window when clicking radiobutton