One major Problem with fckEditor for me is, how can I define Custom Toolbar-Icon without to define them in fckconfig.js.
After Initialising the fckEditor, is there a smart solution how I can ADD Toolbar-Icons to a existing Toolbar with javascript.
My Problem is, that on Runtime different users should get different Toolbar Plugins. But I don't want to define the toolbar-Icons in the fckconfig.js or even create diffrent Toolbars for Usergroups.
Has anyone an example, how you can add a new Pluging to a existing Toolbar without manipulate the fckconfig.js.
I mean, after initalising the fckEditor I would like to do this with fckEditor function FCKeditor_OnComplete().
Just a simple Example how to Insert a Toolbar-Icon with the function on a prefered place in the existing Toolbar would be great.
As Example if I have allways a Toolbar named:
How can I Insert a Plugin with the function FCKeditor_OnComplete() between
For any existing example, forum entries, thanks
After Initialising the fckEditor, is there a smart solution how I can ADD Toolbar-Icons to a existing Toolbar with javascript.
My Problem is, that on Runtime different users should get different Toolbar Plugins. But I don't want to define the toolbar-Icons in the fckconfig.js or even create diffrent Toolbars for Usergroups.
Has anyone an example, how you can add a new Pluging to a existing Toolbar without manipulate the fckconfig.js.
I mean, after initalising the fckEditor I would like to do this with fckEditor function FCKeditor_OnComplete().
Just a simple Example how to Insert a Toolbar-Icon with the function on a prefered place in the existing Toolbar would be great.
As Example if I have allways a Toolbar named:
FCKConfig.ToolbarSets["simple"] = [ ['FitWindow','Source','-','Cut','Copy','Paste','PasteText','PasteWord','-','Image'], ];
How can I Insert a Plugin with the function FCKeditor_OnComplete() between
'-','Image'with the Placeholder "MyUrl" and register the function vor "MyUrl"
For any existing example, forum entries, thanks