我有一个剑道ui ListView ,我想让这些项目可选择(单选)。我没有在互联网上找到任何带有角度的样本。
我要做的是为所选项目设置样式,并根据所选项目进行一些调用。
这是我的 HTML :
<div class="list-group no-radius no-border no-bg m-b-none"
kendo-list-view="publishPositionsListView"
k-options="ctrl.publishPositionsSourceOptions"
k-data-source="ctrl.publishPositionsSource">
<a class="list-group-item p-l hover-anchor b-a no-select ng-scope" k-template>
<span>{{dataItem.Title}}</span>
</a>
</div>
这是我的 JavaScript :
vm.publishPositionsSource = new kendo.data.DataSource({
dataType: "aspnetmvc-ajax",
transport: {
read: {
url: "publish/getall",
type: "GET"
}
},
schema: {
type: "json",
data: "Data",
total: "Total",
model: {
id: "Id"
}
}
});
vm.publishPositionsSourceOptions = {
dataBound: function (e) {
// Set selected style for the first item when loaded
e.sender.element.children().first().addClass("focus");
}
}
有什么想法吗?我想知道是否有办法做到这一点,而不是使用ng-click
答案 0 :(得分:2)
要在kendoUI列表视图上启用单一选择,请将selectable: "Single"
添加到listview-config。
您还可以使用listview的select
方法以编程方式设置所选项目。
当你把它们放在一起时,它可能看起来像这样:
$scope.listViewOptions = {
dataSource: $scope.myDataSource,
selectable: "Single",
dataBound: function(event) {
/* Select the first item here */
},
change: function(event) {
/* Do something with the selected item */
}
}
我还创建了一个有效的dojo(虽然它没有使用角度)。