Can a dropdown list item be selected using AngularJS instead of jQuery?
I have successfully accomplished this using jQuery, but I am curious if it can be done with AngularJS.
This is how I achieved it using jQuery:
var dropdownlist = $("select").data("kendoDropDownList");
dropdownlist.select(function(dataItem) {
return dataItem.name === $scope.person.name;
});
dropdownlist.toggle();