The forum operates in read-only mode. Please head to StackOverflow for support.
There is a way to resize the editor only vertical?
I was just looking for an answer for this too.If you set the resize_minWith and resize_maxWidth to the same value then resizing cannot occur.My problem is that I've got the editor in a fluid layout (resizes horizontally when the window is sized)... but I haven't got an answer for that Regards,Rob
The "config.resize_dir" setting is described in the API here: http://docs.cksource.com/ckeditor_api/s ... resize_dirThe HOWTO article on using this setting is here: http://docs.cksource.com/CKEditor_3.x/H ... Directions
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help. Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Resize Vertical Only
I was just looking for an answer for this too.

If you set the resize_minWith and resize_maxWidth to the same value then resizing cannot occur.
My problem is that I've got the editor in a fluid layout (resizes horizontally when the window is sized)... but I haven't got an answer for that
Regards,
Rob
Re: Resize Vertical Only
editor.config.resize_minWidth = 700;
editor.config.resize_maxWidth = 700;
editor.config.width = 700;
Re: Resize Vertical Only
config.resize_dir = 'vertical';
Zachary
Re: Resize Vertical Only
The "config.resize_dir" setting is described in the API here: http://docs.cksource.com/ckeditor_api/s ... resize_dir
The HOWTO article on using this setting is here: http://docs.cksource.com/CKEditor_3.x/H ... Directions
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!