Hi,
I've just started to install CKEditor into a web page, but when I refresh the page, my textarea disappears instead of being replaced by the editor.
The fact that something happens tells me that the ckeditor.js file is being found alright and Firebug shows me that there are no js errors.
I've tried everything I can think of to try to track the problem down, but I'm totally stumped now as to what's going on, because everything seems to be set up exactly as the documentation says.
Does anyone have any suggestions as to what the problem might be?
Debbie
I've just started to install CKEditor into a web page, but when I refresh the page, my textarea disappears instead of being replaced by the editor.
The fact that something happens tells me that the ckeditor.js file is being found alright and Firebug shows me that there are no js errors.
I've tried everything I can think of to try to track the problem down, but I'm totally stumped now as to what's going on, because everything seems to be set up exactly as the documentation says.
Does anyone have any suggestions as to what the problem might be?
Debbie

Re: My textarea is disappearing
Re: My textarea is disappearing
It turned out to be a clash between my object.prototype.is_array function and theirs, so I converted it into a standalone function and everything started working properly.
I hope that helps.
Debbie
Re: My textarea is disappearing
Re: My textarea is disappearing
Cheers and thanks to anyone who can help.
Kelvin
I have discovered the soluion. I had MaintainScrollPositionOnScrollBack = "true" and SmartNavigation = "true"
in my config
<system.web >
<!--added by Kelvin Brunton-->
<pages maintainScrollPositionOnPostBack = "true" smartNavigation="true"/>
<!--end of added by Kelvin Brunton-->
<!--<authentication mode="None">-->
<authentication mode="Forms">
I reset those in the directory config to false. Hey Presto. This works fine for me as that directory holds only user input forms. They are not to Long so maintaining scroll position is not an issues. The screen flashes on submit, but I like that as the users can tell that something has happened. Should you require those switched on you will have to dig a little deeper. Hope this of help to someone out there.
Cheers Kelvin