enable

Enables or disables the widget.

Parameters

enable Boolean

If set to true, the widget will be enabled. If set to false, the widget will be disabled.

Example - enable the widget

<div id="signature"></div>
<script>
    $("#signature").kendoSignature({}
        enable: false
    });
    var signature = $("#signature").data("kendoSignature");
    signature.enable(true);
</script>

Example - disable the widget

<div id="signature"></div>
<script>
    $("#signature").kendoSignature();
    var signature = $("#signature").data("kendoSignature");
    signature.enable(false);
</script>
In this article