popup Object
The popup configuration options (tablet only).
<div data-role="view">
Open
<ul id="actionsheet" data-role="actionsheet" data-popup='{ "height": "auto", "width": 200, "direction": "left" }'>
<li>Foo</li>
<li>Bar</li>
</ul>
</div>
<script>
var app = new kendo.mobile.Application();
</script>
popup.direction Number | String
(default: "down")
The direction to which the popup will expand, relative to the target that opened it.
<div data-role="view">
Open
<ul id="actionsheet" data-role="actionsheet" data-popup='{ "direction": "left" }'>
<li>Foo</li>
<li>Bar</li>
</ul>
</div>
<script>
var app = new kendo.mobile.Application();
</script>
popup.height Number | String
(default: "auto")
The height of the popup in pixels.
<div data-role="view">
Open
<ul id="actionsheet" data-role="actionsheet" data-popup='{ "height": 400 }'>
<li>Foo</li>
<li>Bar</li>
</ul>
</div>
<script>
var app = new kendo.mobile.Application();
</script>
popup.width Number | String
(default: 240)
The width of the popup in pixels.
<div data-role="view">
Open
<ul id="actionsheet" data-role="actionsheet" data-popup='{ "width": 400 }'>
<li>Foo</li>
<li>Bar</li>
</ul>
</div>
<script>
var app = new kendo.mobile.Application();
</script>