Hi there,
i want to use TinyMCE instead of CKEditor with Grocery CRUD.
In the current version of Grocery CRUD there is no TinyMCE installed anymore, right?
So i tried to install it by myself. These are my steps:
1. I downloaded the jquery package of the current Version of TinyMCE and copied it to /assets/grocery_crud/texteditor
2. I modified the lines 2238-2241 in application/libraries/Grocery_Crud.php like this:
case 'tinymce': $this->set_js_lib($this->default_texteditor_path.'/tiny_mce/tinymce.min.js'); $this->set_js_lib($this->default_texteditor_path.'/tiny_mce/jquery.tinymce.min.js'); $this->set_js_config($this->default_javascript_path.'/jquery_plugins/config/jquery.tine_mce.config.js'); break;
3. I changed the texteditor in the config.php to tinymce.
I left the file jquery.tine_mce.config.js as it comes with the current version of grocery crud.
When I now try to modify a database element in the browser there is just no Editor display. It is just empty!
When I change the editor in config.php back to ckeditor the CKEditor is normaly displayed at the same place, were before was nothing!
Can anyone help me please?
iStooge