How to call multiple functions on kendo drop down change event in mvc
following is the code
@(Html.Kendo().DropDownList()
.Name("ddl1")
.HtmlAttributes(new { @style = "width:60px", tabIndex = "21", id = "ddl1" })
.BindTo(new SelectList((List<dynamic>)ViewData["state"], "State1", "State1"))
.Value(Model.State)
.OptionLabel("Select")
.Events(e => e.Change("checkDataQuick"))
One function checkDataQuick is called, i want to call another function checkLocation also. two function i want to call on change event. please let me know how to do this.