close

Fired when the mobile ModalView is closed by the user.

    <div data-role="view">
        Foo
    </div>


    <div data-role="modalview" id="foo" data-close="onClose">
        Foo
    </div>

    <script>
    function onClose(e) {
        // handle event
    }

    new kendo.mobile.Application();
    </script>

Event Data

e.sender kendo.mobile.ui.ModalView

The widget instance which fired the event.

In this article