1
On the same page I have 2 texarea. Since one of them is to be small and the other standard.
The pattern has autogrow and the small arrow maximum height of 100px.
The problem is that one configuration overwrites the other.
if(cksize == "small"){
CKEDITOR.config.height = 100;
CKEDITOR.config.autoGrow_maxHeight = 100;
}else{
CKEDITOR.config.height = 0;
CKEDITOR.config.autoGrow_maxHeight = 0;
}
There’s a way I can pass these options in the options json?
CKEDITOR.replace(id, options);
Being that inside that options
would have all settings and height.
Perfect, brother. 4 years later and still helping. Rs
– Gato de Schrödinger