Im using the editor with uilayout. Its a re sizing control.
I initialize the height by reading the resize heights by readling outerHeight method.
So the editor shows up perfect in my screen.
The uilayout also has an event that occurs when you resize. In the event i try to resize the editor height
but nothing happens.
I have even changed the height size in the event to just 1000, 2000, or any number to see if the editors height
would increase but nothing.
In the event i have also tried the following with no luck:
and
and
but nothing seems to change the editor height. It seem like once you set the height you cant dynamically change it anymore.
Any ideas on this would be appreciated.
Thanks
Eric
The editor loads fine an
I initialize the height by reading the resize heights by readling outerHeight method.
CKEDITOR.instances.projectTrackerEditorControl.config.height = layout.state.center.outerHeight;
So the editor shows up perfect in my screen.
The uilayout also has an event that occurs when you resize. In the event i try to resize the editor height
CKEDITOR.instances.projectTrackerEditorControl.config.height = layout.state.center.outerHeight;
but nothing happens.
I have even changed the height size in the event to just 1000, 2000, or any number to see if the editors height
would increase but nothing.
In the event i have also tried the following with no luck:
CKEDITOR.instances.projectTrackerEditorControl.replace('projectTrackerEditorControl', { height: 1000 });
and
CKEDITOR.instances.replace('projectTrackerEditorControl', { height: 1000 });
and
CKEDITOR.instances.projectTrackerEditorControl.resize('300px', '1000px');
but nothing seems to change the editor height. It seem like once you set the height you cant dynamically change it anymore.
Any ideas on this would be appreciated.
Thanks
Eric
The editor loads fine an