Hello,
No one have any answer for this issue ?
I have set a field to TEXT but it is only display as an input text field while it should display with the ckeditor which is set correctly in the CRUD config file, grocery_crud.php :
$config['grocery_crud_default_text_editor'] = 'ckeditor';
$config['grocery_crud_text_editor_type'] = 'full';
This is my function in the controler :
public function about_abc()
{
$crud = new grocery_CRUD();
$crud->set_theme('bootstrap');
$crud->set_table('about_abc');
$crud->set_subject('<i class="fa fa-picture-o"></i> About abc');
$crud->set_field_upload('image','assets/uploads/files');
$state = $crud->getState();
if($state == 'add')
{
$crud->fields('title_en','title_fr','title_es','text_en','text_fr','text_es','image');
$output = $crud->render();
$this->_generate_output('admin_page_view.php',$output);
}
elseif($state == 'edit')
{
$crud->fields('title_en','title_fr','title_es','text_en','text_fr','text_es','image');
$output = $crud->render();
$this->_generate_output('admin_page_view.php',$output);
}
else
{
$crud->columns('title_en','text_en','image');
$output = $crud->render();
$this->_generate_output('admin_page_view.php',$output);
}
}
Help.... please :unsure: