I have the ckeditor inside of a modal window which resizes. I want to get the editor to resize along with this parent container. Setting the width to 100% works, but not height. Is there some workaround for this? Seems like a very basic and essential aspect of an editor to be able to resize with a parent dialog, or container.
Any tips very appreciated.
Any tips very appreciated.
Re: Is there a way yet to have editor resize with parent div
So you might be able to do something like
document.getElementById("ContainerDiv").style.height = x;
document.getElementById("cke_contents_EditorInstanceName").style.height = y;
Hope that helps.