model String | ObservableObject
(default: null)
The MVVM model to bind to. If a string is passed, The view will try to resolve a reference to the view model variable in the global scope.
Example
<div data-role="view" data-model="foo">
<span data-bind="text:bar"></span>
</div>
<script>
var foo = { bar: "baz" }
new kendo.mobile.Application();
</script>