×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Javascript
Posted by: Dip Sweng
Added: Nov 13, 2015 7:40 PM
Views: 1930
Tags: jquery kendo
  1. // this is how you programmatically select dropdown by its text value
  2. // and trigger it so that hidden fields show up
  3. var dropdownlist = $("#createSubscriptionDestinationType").data("kendoDropDownList");
  4. dropdownlist.search("CCN");
  5. dropdownlist.trigger("change");