Skip to content

Commit

Permalink
fix(react-grid): correct TableFilterRow.CellProps types (#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
gsobolev committed Apr 12, 2018
1 parent 175b6a2 commit 639f35f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dx-react-grid/docs/reference/table-filter-row.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Extends [Table.CellProps](table.md#tablecellprops)

Field | Type | Description
------|------|------------
filter | [Filter](filtering-state.md#filter) | Filtering options that are applied to a column.
onFilter | (filter: [Filter](filtering-state.md#filter)) => void | An event that initiates applying a new filter to a column.
filter | [Filter](filtering-state.md#filter) | null | Filtering options that are applied to a column.
onFilter | (filter: [Filter](filtering-state.md#filter) | null) => void | An event that initiates applying a new filter to a column.
column | [Column](grid.md#column) | A column.
filteringEnabled | boolean | Specifies whether filtering by a column is enabled.
getMessage | ([messageKey](#localization-messages): string) => string | Returns the filter editor placeholder text. Available in the "@devexpress/dx-react-grid-material-ui" package.
Expand Down

0 comments on commit 639f35f

Please sign in to comment.