How to clear the value of a kendo Combo Box

Chinthaka Devinda picture Chinthaka Devinda · Jan 17, 2014 · Viewed 22.8k times · Source

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

Answer

Rodney picture Rodney · Feb 6, 2014

You can set the value to the new value

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

Or clear it

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