refresh

Reinitializes the editing area iframe. Should be used after moving the editor in the DOM.

Example

<textarea id="editor"></textarea>
<div id="container"></div>
<script>
$("#editor").kendoEditor();
var editor = $("#editor").data("kendoEditor");
editor.wrapper.appendTo("#container");
editor.refresh();
</script>
In this article