enable Boolean(default: true)

If set to false the widget will be disabled and will not allow the user to click it. The widget is enabled by default.

Example - initialize disabled button.

<div data-role="view">
    <a data-role="button" data-enable="false" data-click="onClick">Button</a>
</div>

<script>
    var app = new kendo.mobile.Application();
    function onClick() {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("click");
    }
</script>
In this article