focus

    Focuses the widget.

    Example - focus the widget

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