5121 Posts in 1527 Topics by 1119 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 779 Views |
-
Using several HTMLEditor Configs in CMS

18 October 2010 at 11:28pm
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 tooI 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
-
Re: Using several HTMLEditor Configs in CMS

19 October 2010 at 5:01am
I had the same problem once. The problem turned out to be the priority of the config.
See this thread: http://www.silverstripe.org/general-questions/show/280243
| 779 Views | ||
|
Page:
1
|
Go to Top |


