KendoUI下拉过滤器不适用于AngularJS

问题描述 投票:0回答:1

我尝试将过滤器添加到KendoUI下拉列表中,似乎无法正常工作。过滤器工作正常没有角度。但是当我将其添加到角度时,它不会在下拉列表中显示类型过滤器。我使用了官方网站上的相同示例。

<div ng-controller='myctrl'>
    <h4 style="padding-top: 2em;">Remote data</h4>
    <select kendo-drop-down-list
            k-data-text-field="'ProductName'"
            k-data-value-field="'ProductID'"
            k-data-source="productsDataSource"
            style="width: 100%">
    </select>
<div>

调节器

angular.module('myApp', ["kendo.directives"])
.controller('myctrl', ['$scope', function($scope) {
    $scope.productsDataSource = {
        type: "odata",
        serverFiltering: true,
        filter: "startswith",
        transport: {
            read: {
                url: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Products",          
            }
        }
    };    
}]);

这是jsfiddle

angularjs kendo-ui kendo-dropdown
1个回答
2
投票

您正在错误地放置“过滤器”属性。请参阅demo guide

filter属性应该在kendo-drop-down-list元素中,但由于你没有使用kendo-drop-down-list作为标记,只是将它作为select元素的属性使用,你需要添加filter属性在元素标签中也是如此。见下文:

<select kendo-drop-down-list
    k-data-text-field="'ProductName'"
    k-data-value-field="'ProductID'"
    k-data-source="productsDataSource"
    filter="'startsWith'"
    style="width: 100%"></select>
<div>

当然从角度模块中删除过滤器属性

angular.module('myApp', ["kendo.directives"])
    .controller('myctrl', ['$scope', function($scope) {
        $scope.productsDataSource = {
                type: "odata",
                serverFiltering: true,
                transport: {
                    read: {
                        url: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Products",
                    }
                }
            };
        }]);

JSFilddle fork of your JSFiddle

© www.soinside.com 2019 - 2024. All rights reserved.