Hello
I want so set some limits for editing text with FCKeditor.
But i can't find an overview with all of his options.
Can somebody give it to me so i can set in my javascript file.
Thank you in advance.
I want so set some limits for editing text with FCKeditor.
But i can't find an overview with all of his options.
Can somebody give it to me so i can set in my javascript file.
Thank you in advance.
RE: Settings options
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
] ;
I got this, but i want more options, where can i find a overview of all options.
RE: Settings options
RE: Settings options
RE: Settings options
$oFCKeditor = new FCKeditor('tagwallsubtext') ;
$oFCKeditor->BasePath = '/siteadm/fck/' ;
$oFCKeditor->ToolbarSet = 'Basic' ;
$oFCKeditor->Width = '50%' ;
$oFCKeditor->Height = '150' ;
$oFCKeditor->Value = '' ;
$oFCKeditor->Create() ;
I don't have a "Basic" in the fckconfig.js - but the editor shows the "basic" toolbar.
RE: Settings options
Are you sure, that you didn't have a declaration of FCKConfig.ToolbarSets["Basic"] in your config.js file ?
Moreover I use fckeditor2 with spip and I've had the same problem but it resolve in deleting spip cache...
RE: Settings options
What is that?
This is what I have in the fckconfig.js file regarding this:
*****************************
FCKConfig.ToolbarSets["Default"] = [
['Source','-','NewPage','Preview'],
['Cut','Copy','Paste','PasteText','PasteWord','-','Print'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Link','Unlink'],
['Image','Table','Rule','SpecialChar','Smiley','TextColor','BGColor','About'],
['Style','FontFormat','FontName','FontSize'],
] ;
FCKConfig.ToolbarSets["Tagwall"] = [
['Bold','Italic','Underline','-','OrderedList','UnorderedList'],
] ;
RE: Settings options
I just try to say that it was possible a problem of cache ... with your browser
RE: Settings options
Thank you....