Skip to content

Commit

Permalink
fix(grid): add missed action argument (#1292)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvet committed Aug 7, 2018
1 parent 2f02936 commit f60e162
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/dx-react-grid/docs/reference/row-detail-state.md
Expand Up @@ -34,5 +34,5 @@ none

Name | Plugin | Type | Description
-----|--------|------|------------
toggleDetailRowExpanded | [Action](../../../dx-react-core/docs/reference/action.md) | ({ rowId }) => void | Expands/collapses the specified row.
toggleDetailRowExpanded | [Action](../../../dx-react-core/docs/reference/action.md) | ({ rowId: number | string, state?: boolean }) => void | Expands/collapses the specified row. The `state` argument specifies whether the rows should be selected (true), deselected (false), or their selection status should be set to the opposite value (undefined).
expandedDetailRowIds | [Getter](../../../dx-react-core/docs/reference/getter.md) | Array<number | string> | Currently expanded rows.
2 changes: 1 addition & 1 deletion packages/dx-react-grid/docs/reference/table-row-detail.md
Expand Up @@ -98,7 +98,7 @@ Name | Plugin | Type | Description
tableColumns | [Getter](../../../dx-react-core/docs/reference/getter.md) | Array<[TableColumn](table.md#tablecolumn)> | Table columns.
tableBodyRows | [Getter](../../../dx-react-core/docs/reference/getter.md) | Array<[TableRow](table.md#tablerow)> | Body rows to be rendered.
expandedDetailRowIds | [Getter](../../../dx-react-core/docs/reference/getter.md) | Array<number | string> | Expanded rows IDs.
toggleDetailRowExpanded | [Action](../../../dx-react-core/docs/reference/action.md) | ({ rowId }) => void | Expands/collapses the specified row.
toggleDetailRowExpanded | [Action](../../../dx-react-core/docs/reference/action.md) | ({ rowId: number | string, state?: boolean }) => void | Expands/collapses the specified row. The `state` argument specifies whether the rows should be selected (true), deselected (false), or their selection status should be set to the opposite value (undefined).
tableCell | [Template](../../../dx-react-core/docs/reference/template.md) | [Table.CellProps](table.md#tablecellprops) | A template that renders a table cell.
tableRow | [Template](../../../dx-react-core/docs/reference/template.md) | [Table.RowProps](table.md#tablerowprops) | A template that renders a table row.

Expand Down
2 changes: 1 addition & 1 deletion packages/dx-vue-grid/docs/reference/row-detail-state.md
Expand Up @@ -38,5 +38,5 @@ none

Name | Plugin | Type | Description
-----|--------|------|------------
toggleDetailRowExpanded | Action | ({ rowId }) => void | Expands/collapses the specified row.
toggleDetailRowExpanded | Action | ({ rowId: number | string, state?: boolean }) => void | Expands/collapses the specified row. The `state` argument specifies whether the rows should be selected (true), deselected (false), or their selection status should be set to the opposite value (undefined).
expandedDetailRowIds | Getter | Array<number | string> | Currently expanded rows.
2 changes: 1 addition & 1 deletion packages/dx-vue-grid/docs/reference/table-row-detail.md
Expand Up @@ -114,7 +114,7 @@ Name | Plugin | Type | Description
tableColumns | Getter | Array<[TableColumn](table.md#tablecolumn)> | Table columns.
tableBodyRows | Getter | Array<[TableRow](table.md#tablerow)> | Body rows to be rendered.
expandedDetailRowIds | Getter | Array<number | string> | Expanded rows IDs.
toggleDetailRowExpanded | Action | ({ rowId }) => void | Expands/collapses the specified row.
toggleDetailRowExpanded | Action | ({ rowId: number | string, state?: boolean }) => void | Expands/collapses the specified row. The `state` argument specifies whether the rows should be selected (true), deselected (false), or their selection status should be set to the opposite value (undefined).
tableCell | Template | object? | A template that renders a table cell.
tableRow | Template | object? | A template that renders a table row.

Expand Down

0 comments on commit f60e162

Please sign in to comment.