我想使用Kendo从Kendo DropDownListe检索数据。
PS我想在不使用Knockout-Kendo.js
的情况下这样做PS有一个在Jquery上运行的示例代码。见下文
<input id="products" data-bind="DDList: { dataTextField: 'ProductName', dataValueField: 'ProductID', data: Product, value: selectedId }" />
$(document).ready(function() {
$("#products").kendoDropDownList({
dataTextField: "ProductName",
dataValueField: "ProductID",
dataSource: {
transport: {
read: {
dataType: "jsonp",
url: "https://demos.telerik.com/kendo-ui/service/Products",
}
}
}
});
});
答案 0 :(得分:0)