serverNavigation Boolean (default: false)

If set to true, the application will not use AJAX to load remote views.

Using this configuration option will affect the user experience, as blank screens will be visible between application states. As the page will be completely reloaded, the application state will not be transferred to the next view.

Example

<div data-role="view">Bar <a data-role="button" href="another-view.html">Go to another page</a></div>

<script>
new kendo.mobile.Application($(document.body), { serverNavigation: true });
</script>
In this article