我需要动态绑定一个Kendo下拉列表。
以下是我的代码:
dropdown1.selected(0);
dropdown.Value(0);
但它不起作用。请建议。
答案 0 :(得分:0)
首先,你必须访问下拉列表,
var dropdownlist = $('#DropdownlistID').data("kendoDropDownList");
然后使用Value(string value_to_be_displayed)函数,
dropdownlist.value("Oranges");
请注意,该值不会与dropdownlist项的索引一起使用。它只接受字符串并显示字符串。