Whether to hide the browser address bar.
The id of the initial mobilie View to display.
Example
<script>
new kendo.mobile.Application($(document.body), {
initial: "ViewID"
});
</script>
The id of the default Application Layout.
Example
<div data-role="view">Bar</div>
<div data-role="layout" data-id="foo">
<div data-role="header">Header</div>
</div>
The text displayed in the loading popup. Setting this value to false will disable the loading popup.
Which platform look to force on the application. Can be one of "ios", "android", "blackberry".
Example
<script>
new kendo.mobile.Application($(document.body), {
platform: "android"
});
</script>
The default View transition.
Example
<script>
new kendo.mobile.Application($(document.body), { transition: "slide" });
</script>