Use inline editing
Edit this pageWarning: You are browsing the documentation for version 1.x which is not maintained anymore.
If some of your projects are still using this version, consider upgrading.
Use inline editing
By default, the bundle uses a Classic Editing which relies on
CKEDITOR.replace
. If you want to use the Inline Editing which relies on
CKEDITOR.inline
, you can configure it globally in your configuration:
1 2 3
# app/config/config.yml
fos_ck_editor:
inline: true
Or you can configure it in your widget:
1
$builder->add('field', 'ckeditor', array('inline' => true));
This work, including the code samples, is licensed under a
Creative Commons BY-SA 3.0
license.