overflow String(default: "auto")

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

  • "auto"
  • "hidden"
  • "visible"
  • "scroll"
  • "clip"
  • "none"

Example

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