Create Auto-Expanding Editors
The following example demonstrates how to create an auto-expanding Editor.
<style>
html{font:12px sans-serif;overflow:auto;}
html,body{margin:0;padding:0;height:100%;min-height:100%;}
#Comments{display:block;width:100%;height:100%;border:0;padding:0;}
table.expandEditor{border-width:0;width:100%;height:100%;}
</style>
<textarea id="Comments" cols="60" rows="10"></textarea>
<script>
$("#Comments").kendoEditor().data("kendoEditor").wrapper.width("").height("").addClass("expandEditor");
</script>