dropdownlist不在模式表中运行(angularjs中的Kendo网格)

时间:2019-06-05 22:43:37

标签: angularjs kendo-ui kendo-grid

在jquery或angularjs的剑道网格的过滤器列上的模式表中使用下拉列表时需要演示或源。

             {
                field: "VolunteerConnectName",
                title: vm.module_resources.VolunteerConnect_Text,
                filterable: {
                    cell: {
                        template: function (args) {
                            args.element.kendoDropDownList({
                                dataSource: args.dataSource,
                                optionLabel: "Seleccione",
                                dataTextField: "VolunteerConnectName",
                                dataValueField: "VolunteerConnectName",
                                valuePrimitive: true
                            });
                        },
                        operator: "eq",
                        showOperators: false
                    },
                },
                width: "20%"
            },

1 个答案:

答案 0 :(得分:0)

可过滤的行值和模式表的值。

              {
                field: "VolunteerConnect",
                title: vm.module_resources.VolunteerConnect_Text,
                width: "20%",
                values: [
                    { text: "Sí", value: true },
                    { text: "No", value: false }
                ],
                template: function (dataItem) {
                    var content = "";
                    content = (dataItem.VolunteerConnect) ? "Sí" : "";
                    return content;
                },
                filterable: true
            }