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.

    <div data-role="view">
        Button
    </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