kendo dropdownlist value jquery

Solutions on MaxInterview for kendo dropdownlist value jquery by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "kendo dropdownlist value jquery"
Jacob
17 Feb 2017
1<input id="dropdownlist" />
2<script>
3$("#dropdownlist").kendoDropDownList({
4  dataSource: [ "Apples", "Oranges" ]
5});
6
7var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
8dropdownlist.value("Apples");
9dropdownlist.trigger("change");
10</script>