kendo grid 过滤器

colums中:

filterable: { ui: chargeFilter }

Js中:

    var chs = ["", ""];
    function chargeFilter(element) {
        element.kendoDropDownList({
            dataSource: chs,
            optionLabel: "--请选择--"
        });
    };

猜你喜欢

转载自www.cnblogs.com/m110/p/10144267.html