CKeditor - move cursor to next container when reached end of the first one

417 views Asked by At

Looking for some solution to my big big problem with text edit. Short description below:

Lets say I have two (or more) editable containers. What I need is when you typing on a first container and the cursor reaches end of it, instead expanding it i want it to move to next editable container, it is like in regular Word document, when you reach end of the page it takes cursor to the next page, i need the same thing on two div containers, looking for tips solutions. Is it doable ?

1

There are 1 answers

0
Reinmar On

You really don't want to use plain contentEditable :D. And it won't help - it will be exactly the same situation. You're looking for a holy grail of editors based on contentEditable - how to split content into multiple pages. It's doable using the CSS regions, but only Safari IIRC supports them. Thus, we're keeping fingers crossed for this spec :).