Hi,
I need two different configs for my htmlEditorFields...
I put that code in my class-file to delcare my cusom config and added a second HTMLEditorField, work's fine
but the Content HTMLEditor uses my custom config too
I tried to set_active the standard config after adding my second editor but that doesn't help..
HtmlEditorConfig::get('reduced')->disablePlugins('table');
HtmlEditorConfig::get('reduced')->setButtonsForLine(1,
'bold','italic','underline','strikethrough','separator',
'formatselect','separator',
'sslink','unlink','separator',
'bullist','numlist','hr','charmap'
);
HtmlEditorConfig::get('reduced')->setButtonsForLine(2);
HtmlEditorConfig::get('reduced')->setButtonsForLine(3);
$zusatzZeile=new HtmlEditorField('Zusatzzeile','ZusatzZeile',1);
HtmlEditorConfig::set_active('reduced');
$fields->addFieldToTab('Root.Content.Main',$zusatzZeile,'Content');
HtmlEditorConfig::set_active('cms');
thanks in advance