elementjQuery

The element of the View. Gets instantiated after the render method is called.

Example

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

<script>
var view = new kendo.View('<span>Hello World!</span>');
view.render($("#app"));
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(view.element.text()); // Hello World!
console.log(view.element.prop('tagName')); // SPAN
</script>
In this article
element
Not finding the help you need?
Contact Support