javascripthtmlkendo-uikendo-mobile

How to clear the value of a kendo Combo Box


I'm fairly new to kendo.I have a requirement to load child combo box data from parent combo box also while I change values it sholud clear the value of existing with child combo and fill with a relevant value.

if someone can guide me to achieve this that would be great.

Thanks

Chinthaka


Solution

  • You can set the value to the new value

     $("#combobox").data("kendoComboBox").value("Oranges");
    

    Or clear it

     $("#combobox").data("kendoComboBox").value("");