Ag网格重置过滤器

时间:2016-09-06 15:55:49

标签: angular filter ag-grid

我尝试将ag网格用于角度2并面临以下行为:

当我尝试在列过滤器中输入任何内容时,网格也会重新加载并重置过滤器。它不仅发生在我输入过滤的东西,而且即使我试图改变过滤器的类型。

有人有过类似的问题吗?

1 个答案:

答案 0 :(得分:0)

我通过添加属性解决了这个问题:newRowsAction:' keep'

columnDefinition = {
    headerName: 'Athlete',
    field: 'athlete'
    // set the column to use text filter
    filter: 'text',
    // pass in additional parameters to the text filter
    filterParams: {apply: true, newRowsAction: 'keep'}
   }

来自ag-grid docs:https://www.ag-grid.com/javascript-grid-filtering/#gsc.tab=0