Change selected value of kendo ui dropdownlist
问题 I have a kendo ui dropdownlist in my view: $("#Instrument").kendoDropDownList({ dataTextField: "symbol", dataValueField: "symbol", dataSource: data, index: 0 }); How can I change the selected value of it using jQuery? I tried: $("#Instrument").val(symbol); But it doesn't work as expected. 回答1: You have to use Kendo UI DropDownList select method (documentation in here). Basically you should: // get a reference to the dropdown list var dropdownlist = $("#Instrument").data("kendoDropDownList");