value String(default: "")

    The value of the widget.

    Example - specify value of the widget

    Open In Dojo
    <input id="combobox" />
    <script>
    $("#combobox").kendoComboBox({
         dataSource: ["Item1", "Item2"],
         value: "Item1"
    });
    </script>
    In this article