Hi
Can the editor be initialized with source view automatically switched on. I'd like to provide a html box to users. And it would be nice if the html view was turned on by default.
thanks
Can the editor be initialized with source view automatically switched on. I'd like to provide a html box to users. And it would be nice if the html view was turned on by default.
thanks

Re: source mode automatically switched on
Using the "execute this function immediately after fckeditor finishes loading" feature, switch to Source mode (it will automatically get called, just put it on your page):
function FCKeditor_OnComplete( editorInstance ){
var oEditor = FCKeditorAPI.GetInstance(editorInstance.Name);
oEditor.Commands.GetCommand('Source').Execute();
}