init

Fires the first time the view renders.

Example

<div id="app"></div>

<script>
/* The result can be observed in the DevTools(F12) console of the browser. */
var view = new kendo.View("Hi!", { init: function() { console.log("View is initiated"); } });
view.render($("#app"));
</script>
In this article