作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据文档,https://www.ag-grid.com/best-angularjs-data-grid/index.php ,如果我在网格的选项对象中将 angularCompileFilters 选项设置为 true,则 cellRenderer 中的模板将被视为 Angular 指令。
但是,我只能使 Angular 编译适用于单元格 - 而不是标题过滤器。是因为它只适用于 Ag-Grid-Enterprise 版本吗?或者它只是一个错误?
此外,我也没有看到任何正确记录的示例片段。
最佳答案
它也适用于过滤器,您只需要设置一个自定义过滤器:
this.gridOptions = {
angularCompileFilters:true,
columnDefs: [{
headerName: "My Column",
field: "MyColumn",
filter: function () {
this.init = function (params) {
//init logic
}
this.getGui = function () {
return "<p ng-repeat=\"i in \'abc\'\">{{i}}</p>"
}
this.isFilterActive = function () {
return true;
}
this.doesFilterPass = function (params) {
//filter logic
return true;
}
this.getModel = function () {
return { name: "" }
}
this.setModel = function (model) {
}
}
}
getGui
返回的字符串将被编译为 Angular 组件。
关于angularjs - Ag-grid 自定义过滤器 : filterParams - cellRenderer in Angular 1. x,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37393994/
根据文档,https://www.ag-grid.com/best-angularjs-data-grid/index.php ,如果我在网格的选项对象中将 angularCompileFilters
我是一名优秀的程序员,十分优秀!