Ckeditor 如何使primefaces编辑器自动增长

Ckeditor 如何使primefaces编辑器自动增长,ckeditor,jsf-2.2,primefaces-extensions,Ckeditor,Jsf 2.2,Primefaces Extensions,我使用的是primefaces extensions ckeditor 8.0.4,我想在添加内容时使ckeditor自动增长。 我在customConfig js文件中添加了以下代码。但什么都没有发生,primefaces编辑器支持自动增长功能吗 CKEDITOR.config.autoGrow_onStartup = true; //autogrow CKEDITOR.config.autoGrow_minHeight = 250; //minHeight CKEDITOR.co

我使用的是primefaces extensions ckeditor 8.0.4,我想在添加内容时使ckeditor自动增长。 我在customConfig js文件中添加了以下代码。但什么都没有发生,primefaces编辑器支持自动增长功能吗

  CKEDITOR.config.autoGrow_onStartup = true; //autogrow
  CKEDITOR.config.autoGrow_minHeight = 250; //minHeight
  CKEDITOR.config.autoGrow_maxHeight = 600; //maxHeight

PF扩展支持底层CKEDITOR支持的任何内容。我想知道是外部的DIV还是PF的一些扩展限制了他的高度?