show

Fires when the mobile View becomes visible.

    <div data-role="view" id="foo" data-show="show">
        Foo
    </div>


    <script>
    var app = new kendo.mobile.Application();
    function show(e) {
    /* The result can be observed in the DevTools(F12) console of the browser. */
        console.log('show');
    }
    </script>

Event Data

e.view kendo.mobile.ui.View

The mobile view instance.

In this article