| 1 | <html> |
|---|
| 2 | <head> |
|---|
| 3 | <title>FCKeditor BUG</title> |
|---|
| 4 | <script type="text/javascript" src="http://faramir.proteon.nl/v41/include/fckeditor25/fckeditor.js"></script> |
|---|
| 5 | </head> |
|---|
| 6 | <body> |
|---|
| 7 | <form method="POST"> |
|---|
| 8 | <input type=text id='textInput' size="60" value='First put focus here by clicking'></input><br>My fckeditor below: <br> |
|---|
| 9 | <textarea id="bodyText">Then try to click the radiobutton<br><br> |
|---|
| 10 | <input type="radio"></input>My Radiobutton<br><br> |
|---|
| 11 | You will see the whole window being 'frozen', it will not react on clicking anymore.<br /> |
|---|
| 12 | Even the tabs in IE won't respond anymore.<br> |
|---|
| 13 | The only way to get out of this situation is selecting another window.<br> |
|---|
| 14 | <br>This only happens in IE (tested in IE7), not in Firefox.<br> |
|---|
| 15 | Happens in fckeditor 2.5 and 2.5.1, not in 2.4.3.<br> |
|---|
| 16 | </textarea><br> |
|---|
| 17 | </form> |
|---|
| 18 | <script type="text/javascript"> |
|---|
| 19 | var oFCKeditor = new FCKeditor('bodyText', '720px', '320'); |
|---|
| 20 | oFCKeditor.BasePath = "http://faramir.proteon.nl/v41/include/fckeditor25/"; |
|---|
| 21 | oFCKeditor.ReplaceTextarea(); |
|---|
| 22 | </script> |
|---|
| 23 | </body> |
|---|
| 24 | </html> |
|---|