Is it possible to initiate the fckeditor with checked html-checkbox? That would mean:the content in the IFRAME is on Load not rendered but visible as sourcecode. That is what I need. Possible?
Tue, 05/11/2004 - 23:26
#1
RE: call fckeditor with checked html-checkbox?
Look for something called "incompatible" that decides how to instantiate the editor. The editor has methods for opening in source mode, since incompatible browsers automatically open as a regular old text box.
I'm using fckeditor with ASP. In ASP, I do this
<begin asp snippet>
Set oFCKeditor = New FCKeditor
oFCKeditor.ToolbarSet = "Basic"
oFCKeditor.inCompatible = true
oFCKeditor.Value = sContent
FCKeditor.CreateFCKeditor "content", 535, 500
</end asp snippet>
I hope this helps!