Hi, I am using CKEditor 3.0 and i am using the resize feature of editor window. To fix max and min values of width and height i use :
CKEDITOR.config.resize_maxWidth = '100%';
CKEDITOR.config.resize_minWidth = '100%';
CKEDITOR.config.resize_minHeight = '350';
This configuration ensures that the width always remain 100% so that i do not have horizontal scroll, I want to allow only height resizing in short.
This work fine on Firefox 3.0 and Chrome but gives a javascript error on IE7 when i try to resize.
When i change the %age values into pixel values, it works fine, but in this case my editor window size becomes fixed and no longer remains relative.
Is this a known issue with IE7 or I am using wrong method to set the max and min values. Please help.
CKEDITOR.config.resize_maxWidth = '100%';
CKEDITOR.config.resize_minWidth = '100%';
CKEDITOR.config.resize_minHeight = '350';
This configuration ensures that the width always remain 100% so that i do not have horizontal scroll, I want to allow only height resizing in short.
This work fine on Firefox 3.0 and Chrome but gives a javascript error on IE7 when i try to resize.
When i change the %age values into pixel values, it works fine, but in this case my editor window size becomes fixed and no longer remains relative.
Is this a known issue with IE7 or I am using wrong method to set the max and min values. Please help.