resizable.content Boolean

If enabled, the editor renders a resize handle to allow users to resize it.

Example

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
  resizable: {
      content: true
  }
});
</script>
In this article