I have tried doing it in jQuery :
var dropdownlist = $("#Instrument").data("kendoDropDownList");
dropdownlist.select(function(dataItem) {
return dataItem.symbol === "test";
});
Sources:
- http://jsfiddle.net/OnaBai/mRmNJ/
- Change selected value of kendo ui dropdownlist
Is there a way to do this using AngularJS without directly accessing DOM?