resize String(default: "none")

Sets a value controlling how the resize is applied. Can also be set to the following string values:

  • "both"
  • "horizontal"
  • "vertical"
  • "none"

Example

<textarea id="description"></textarea>
<script>
$("#description").kendoTextArea({
    resize: "both"
});
</script>
In this article