Ive managed to get the editor to display using both textAreaReplace and the Ajax method, hwoever in both instances the editor is nto editable.. I can click on the white area and no cursor shows up and typing does nothing, If I hit paste it opens a pop up for me to paste again which then will change the content in the editor do I have to do something to enable editing ?
Wed, 07/18/2007 - 23:50
#1
Re: Problem installing
I need the div to be invisible until I request it
tis strange it doesnt let me make it invisible even after I initialize it.
var tdiv = document.getElementById("txtMessage");
var ed = new FCKeditor("txtMessage");
ed.BasePath = "/scripts/fskeditor/" ;
ed.Width = 500
ed.height = 500
tdiv.innerHTML = ed.CreateHtml();
document.getElementById("divParent").style.display = "none"
once i make the parent display block, the editor is broken and canot be edited. unless i comment out the last line. then it works and i can even make the parent display none later and it doesnt break so maybe it needs longer to initialize.
Re: Problem installing
You can also try to use a nightly build that should take care of it automatically.
Re: Problem installing
Re: Problem installing