我正在使用Kendo UI我的Web應用程序的HTML框架。在Kendo UI中使用自定義CSS
我使用Kendo主要用於爲MVVM提供的開箱即用支持。但是我需要Kendo MVVM的靈活性,而不必使用Kendo Widgets。即,我要通過劍道提供的觀察對象結合直接將HTML元素如DIV /表等
示例:如果我在kendo.observable視圖模型對象viewModel.dtSource我DataSource對象可以結合使用的代碼一個劍術網格下面
$("#grid").kendoGrid({
dataSource: viewModel.dtSource,
height: 550,
columns: [{
field: "firstname",
title: "First Name"
}, {
field: "address",
title: "Address"
}, {
field: "contact",
title: "Contact"
}, {
field: "gender",
title: "Gender"
}],
});
但是我想要的劍道observable對象viewModel.dtSource到一個HTML表,而不是直接使用劍道電網。
這可能嗎?