1ShadMehr Sample — Using AutoGrow Plugin

This sample shows how to configure 1ShadMehr instances to use the autogrow plugin that lets the editor window expand and shrink depending on the amount and size of content entered in the editing area.

In its default implementation the AutoGrow feature can expand the 1ShadMehr window infinitely in order to avoid introducing scrollbars to the editing area.

It is also possible to set a maximum height for the editor window. Once 1ShadMehr editing area reaches the value in pixels specified in the autoGrow_maxHeight attribute, scrollbars will be added and the editor window will no longer expand.

To add a 1ShadMehr instance using the autogrow plugin and its autoGrow_maxHeight attribute, insert the following JavaScript call to your code:

CKEDITOR.replace( 'textarea_id',
	{
		extraPlugins : 'autogrow',
		autoGrow_maxHeight : 800
	});

Note that textarea_id in the code above is the id attribute of the <textarea> element to be replaced with 1ShadMehr. The maximum height should be given in pixels.