clearButton Boolean (default: true)

    Unless this options is set to false, a button will appear when hovering the widget. Clicking that button will reset the widget's value and will trigger the change event.

    Example - disable the clear button

    Open In Dojo
    <input id="combobox" />
    <script>
    $("#combobox").kendoComboBox({
        clearButton: false
    });
    </script>
    In this article