Kendo UI Combo Box Reset Value

Kendo UI Combo Box Reset Value


$("#ComboDdlCustomers").data("kendoComboBox").value(null);

Example in Detail as given below.

Kendo UI Combo Box MVC code

@(Html.Kendo().ComboBox()
    .Name("ComboDdlCustomers")
    .Filter("contains")
    .Placeholder("Select Customer...")
    .HtmlAttributes(new { style = "width:320px" })
    .DataTextField("Text")
    .DataValueField("Value")
    .BindTo(custLst1)
    .SelectedIndex(3)
    .Suggest(true)
    .Events(e =>
    {
        e.Select("onSelect");
    })
)


JavaScript code for onSelect() function event and Reset Value of Kendo UI Combo Box.

function onSelect(e) {
    var dataItem = this.dataItem(e.item.index());
    var custAccount = new Object();
    custAccount.erpCustomerId = dataItem.Value;

    // Reset Value of Kendo UI Combo Box.
      $("#ComboDdlCustomers").data("kendoComboBox").value(null);
}



ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^