如何清除devexpress dx-react-grid的所有过滤器

时间:2018-07-25 13:36:02

标签: javascript reactjs devexpress devextreme

我有一个使用devexpress / dx-react-grid库的基本表。我正在尝试清除所有列过滤器,但在文档中找不到方法。我看到了一些可能满足我需要的示例,但似乎有一种简单的方法可以做到。

<Grid rows={_data} columns={COLUMNS}>
      <FilteringState
        changeColumnFilter
        onFiltersChange={val => { this._filters = val }}
        defaultFilters={[]}
      />
      <SelectionState
        selection={_selection}
        onSelectionChange={this.props.setSelection}
      />
      <IntegratedSelection />
      <IntegratedFiltering />
      <SortingState />
      <IntegratedSorting />
      <VirtualTable height={_windowHeight - 286} cellComponent={Cell} />
      <TableHeaderRow showSortingControls />
      <TableSelection showSelectAll />
      <TableFilterRow />
    </Grid>

我正在使用@ devexpress / dx-react-grid 1.2.0

0 个答案:

没有答案