hideAddressBar: Boolean(default: true)
Whether to hide the browser address bar.
initial: String
The id of the initial mobilie View to display.

Example

<script>
     new kendo.mobile.Application($(document.body), {
         initial: "ViewID"
     });
</script>
layout: String
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>
loading: String(default: Loading...)
The text displayed in the loading popup. Setting this value to false will disable the loading popup.
platform: String
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>
transition: String
The default View transition.

Example

<script>
     new kendo.mobile.Application($(document.body), { transition: "slide" });
</script>