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', ['inline' => true]);
    
        This work, including the code samples, is licensed under a
        Creative Commons BY-SA 3.0 license.