select
Fires when the Editor selection has changed.
Example - subscribe to the "select" event during initialization
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
select: function(e) {
}
});
</script>
Example - subscribe to the "select" event after initialization
<textarea id="editor"></textarea>
<script>
function editor_select(e) {
}
$("#editor").kendoEditor();
var editor = $("#editor").data("kendoEditor");
editor.bind("select", editor_select);
</script>