close

Fired when the mobile ModalView is closed by the user.

Example

<div data-role="view">
    <a data-role="button" href="#foo" data-rel="modalview">Foo</a>
</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