select

Selects the widget.

Parameters

state Boolean

If set to true the widget will be selected. If set to false the widget will be deselected.

Example - enable the widget

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

    var chip = $("#chip").data("kendoChip");
    chip.select(true);
</script>

Example - disable the widget

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

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