リストの DataSource にいつでもデータを追加できます。すべてのアイテムをあるリストから別のリストに転送する方法は次のとおりです
function moveAllLeft() {
var listView2 = $("#listView2").data("kendoListView");
listView2.element.children().each(function() {
listView2.remove($(this));
var that = $(this);
dataSource.add({
ProductName : that[0].innerText
});
});
}
function moveAllRight() {
var listView = $("#listView").data("kendoListView");
listView.element.children().each(function() {
listView.remove($(this));
var that = $(this);
dataSource2.add({
ProductName : that[0].innerText
});
});
}
ここで、dataSource は最初のリストのデータソースであり、dataSource2 は 2 番目のリストのデータソースです。