setTexteditor

setTexteditor(array $fields)

The method setTexteditor is used when we want to specify one field as text that will be edited with a texteditor. The default texteditor is CKeditor. For example:

$crud->setTexteditor(['notes', 'full_text']);

You can find a full working example below:

$crud->setTable('film');
$crud->setSubject('Film', 'Films');
$crud->setTexteditor(['description']);

$output = $crud->render();

The result of the above example can be found below. Press the add or the edit button in order to see the editor working: