YiiBooster icon indicating copy to clipboard operation
YiiBooster copied to clipboard

enterMode in CKEditor doesn't work

Open alexanderpavlovru opened this issue 10 years ago • 2 comments

How to configure ckeditor to not wrap content in tag p?

I tried add to config.js this string

 config.enterMode = CKEDITOR.ENTER_BR;

And tried

'editorOptions' => array(
    'enterMode' => 'CKEDITOR.ENTER_BR',
 )

It doesn't work.

alexanderpavlovru avatar May 22 '15 16:05 alexanderpavlovru

I have the same problem.

ytaborda17 avatar Jun 07 '16 16:06 ytaborda17

Solved, just replace this: 'enterMode' => 'CKEDITOR.ENTER_BR',

for this: 'enterMode' => 3,

ytaborda17 avatar Jun 07 '16 16:06 ytaborda17