0

我有一个 kendo 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

4

1 回答 1

2

要在 kendoUI 列表视图上启用单选,请添加selectable: "Single"到您的列表视图配置。您还可以使用列表视图的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 */
    }
}

我还创建了一个工作道场(虽然它没有使用角度)。

于 2016-06-24T05:10:22.057 回答