Hello
I have to questions about javascript wysiwyg editors.
1. I need to link few wysiwyg editors in chain.

I mean that in some moment (characters or height limit) cursor should jump to next editor. And if next editor is already filled - cursor should jump (focus) before first symbol. And same if user delete text. Something like Aloha editor demo for column layout. But I can not use this because editors in chain could have different position in different layouts. For example:

2. How can I set editor height limit? For example when editor height reach certain value - user could not add more text but could delete? I have already implement this but there is one big problem:

Editor height limit is reached but user still be be able to add text to any line in the list (marked with arrow)

According to their source,
According to their source, they use a single editor instance with webkit-column-width: 300px; and webkit-column-gap: 30px;. Their styles might have other settings. I'm sure it can be done with CKEditor. You can try using this plugin to limit characters.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Thanks for reply.
Thanks for reply.
1. Yes, as I said before they use CSS3 column layouts. But I can not use it. I need to focus next editr when firs is filled.
2. Characters limit is not suitable beacuse there could be lists, bold symbols, head lines etc. - so each symbol or line cold have different height. And I need to limit editor by height.