view
Returns the kendo.mobile.ui.View which contains the widget. If the widget is contained in a splitview, modalview, or drawer, the respective widget instance is returned.
<div data-role="view" id="foo" data-init="getButtonView">
I am a mobile button
</div>
<script>
new kendo.mobile.Application();
function getButtonView() {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log($("#button").data("kendoMobileButton").view()); // the foo mobile view instance
}
</script>