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

<span id="chip"></span>
<script>
    $("#chip").kendoChip({
        label: 'Chip text',
        enable: false
    });

    var chip = $("#chip").data("kendoChip");
    chip.enable(true);
</script>
In this article