1794 Posts in 590 Topics by 562 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 514 Views |
-
TinyMCE editor not submitting content

30 April 2012 at 6:48pm
Hi folks,
I'm currently developing a website which should contain a simple front-end administration. The form is generated using $fields = singleton('DataObject')->getFrontEndFields(), and my dataobject contains three fields of type HTMLText. These should be editable through TinyMCE editors, which is done through the framework. Well, they are editable, but the content of these fields is empty after submitting the form. I tried really a lot, from tracking down the JS code to tinyMCE.triggerSave() (not resolving the problem), to call of tinyMCE.getInstanceById('Form_EditForm_FieldName').getContent() (which returns an empty string),.... and after hours of headache, I have no clue left where to search for a call I omitted... can anyone help here?
Kind regards from sunny Germany
Nico -
Re: TinyMCE editor not submitting content

1 May 2012 at 11:16pm
Just in case anyone else runs into this problem, this is the solution. Short and simple....
$mceConfig = HtmlEditorConfig::get();
$mceConfig->disablePlugins('spellchecker', 'emotions');
$mceConfig->setOptions(array(
'mode' => 'none'
));
HtmlEditorConfig::set_active();
| 514 Views | ||
|
Page:
1
|
Go to Top |

