Kendo UI目前最新提供KendoUI for jQuery、KendoUI for Angular、KendoUI Support for React和KendoUI Support for Vue四个控件。Kendo UI for jQuery是创建现代Web应用程序的完整UI库。
ListView使您可以使用模板来呈现其项目。
引用的模板显示服务设置的结果。
var dataSource = newkendo.data.DataSource({
transport: {
read: {
url: “https://demos.telerik.com/kendo-ui/service/Products”,
dataType: “jsonp”
}
}
});
$(“#listView”).kendoListView({
dataSource: dataSource,
template: kendo.template($(“#template”).html())
});
下面的示例演示了建议方法的完整实现。