focus
Focuses the widget.
Example - focus the widget
<span id="chip"></span>
<script>
$("#chip").kendoChip({ label: 'Chip text' });
var chip = $("#chip").data("kendoChip");
chip.focus();
</script>
In this article
Focuses the widget.
<span id="chip"></span>
<script>
$("#chip").kendoChip({ label: 'Chip text' });
var chip = $("#chip").data("kendoChip");
chip.focus();
</script>