When set to false, the ModalView will close when the user taps outside of its element.

Example

<div data-role="view">
  <a href="#my-modal" data-rel="modalview" data-role="button">Open Modal</a>
</div>

<div data-role="modalview" id="my-modal" data-width="200" data-height="200" data-modal="false">
  Hello!
</div>

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