New to Kendo UI for jQueryStart a free 30-day trial

Select

methods

Selects the widget.

Parameters:stateBoolean

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

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

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

    var chip = $("#chip").data("kendoChip");
    chip.enable(false);
</script>
Not finding the help you need?
Contact Support