I wonder if it's possible to have a detached toolbar and a different toolbar set depending on the textarea you click into. That would be exactly the same as sample 10 provided by the author but with two different sets of buttons - when you click into instance 1 you will have let's say Basic set, when you click into instance 2 you will have Full set.
Mon, 12/11/2006 - 12:07
#1

Re: ToolbarLocation and ToolbarSet
Re: ToolbarLocation and ToolbarSet
function FCKeditor_OnComplete(editorInstance) { editorInstance.Events.AttachEvent('OnFocus', switchToolbar) ; } function switchToolbar(editorInstance) { if(editorInstance.Name == "FCKeditor_1") { editorInstance.ToolbarSet.Load("Basic"); } else { editorInstance.ToolbarSet.Load("Default"); } }