Kendo Pivot Grid不适用于运营商gte

时间:2017-05-19 14:31:25

标签: filter kendo-ui pivot operator-keyword

我已经像示例一样创建了一个剑道枢轴grid。我有这个选项

                $scope.options = {
                "dataSource": {
                    "type": "xmla",
                    "columns": [],
                    "rows": [{
                        "name": ["[Date].[Hierarchy - QM]"],
                        "expand": false
                    }],
                    "measures": [],
                    "transport": {
                        "connection": {
                            "catalog": "EDI",
                            "cube": "EDI"
                        },
                        "read": {
                            "url": "..../msmdpump.dll",
                            "type": "POST",
                            "dataType": "text",
                            "contentType": "text/xml"
                        }
                    },
                    "filter": {
                        "field": "[Date].[Hierarchy - QM]",
                        "operator": "eq",
                        "value": "new Date(2016, 1, 1)"
                    },
                    "schema": {
                        "type": "xmla"
                    }
                }
            }

所有作品都很完美。 但是,当我将过滤器运算符从'eq'更改为'gte'时,我收到以下错误

  

无法读取未定义

的属性'replace'

0 个答案:

没有答案