Anyone know how to include the wysiwyg editor in a dialog controller / view file?
The below doesnt seem to work.
<?php
$editor = \Core::make('editor');
$editor->setAllowFileManager(false);
$editor->setAllowSitemap(false);
echo $editor->outputStandardEditor('description', $description);
?>
Im getting a javascript error
ReferenceError: CKEDITOR is not defined
I know i must be missing something in the controller to load some sort of assets?