Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 938
Chinthaka Devinda Avatar asked Nov 28 '22 15:11

Chinthaka Devinda


1 Answers

You can set the value to the new value

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

Or clear it

 $("#combobox").data("kendoComboBox").value("");
like image 161
Rodney Hickman Avatar answered Dec 07 '22 23:12

Rodney Hickman