I am using a Kendo DropDownList to load data from JSON. However, the onchange event of the dropdownlist is not firing.
<input class="ddEmailInitiation" />
<script>$(".ddEmailInitiation").kendoDropDownList
({
dataTextField: "Type",
dataSource: json,
change: function () { alert('change') }
});
</script>