Kendo UI Combo Box Reset Value

Posted by ciantrius on Stack Overflow See other posts from Stack Overflow or by ciantrius
Published on 2013-06-28T15:54:05Z Indexed on 2013/06/28 16:21 UTC
Read the original article Hit count: 2452

I'm using the Kendo UI ComboBoxes in cascade mode to build up a filter that I wish to apply.

How do I clear/reset the value of a Kendo UI ComboBox?

I've tried:

$("#comboBox").data("kendoComboBox").val('');
$("#comboBox").data("kendoComboBox").select('');
$("#comboBox").data("kendoComboBox").select(null);

all to no avail. The project is an MVC4 app using the Razor engine and the code is basically the same as the Kendo UI example.

© Stack Overflow or respective owner

Related posts about asp.net-mvc-4

Related posts about kendo-ui