Я использую пример react-table
на этом официальных кодах и поле .
Код для столбцов выглядит так:
const columns = React.useMemo(
() => [{
Header: 'Name',
columns: [{
Header: 'First Name',
accessor: 'firstName',
// Use a two-stage aggregator here to first
// count the total rows being aggregated,
// then sum any of those counts if they are
// aggregated further
aggregate: ['sum', 'count'],
Aggregated: ({
cell: {
value
}
}) => `${value} Names`,
},
{
Header: 'Last Name',
accessor: 'lastName',
// Use another two-stage aggregator here to
// first count the UNIQUE values from the rows
// being aggregated, then sum those counts if
// they are aggregated further
aggregate: ['sum', 'uniqueCount'],
Aggregated: ({
cell: {
value
}
}) => `${value} Unique Names`,
},
],
},
...
],
[]
)
Как можно отключить группировку длято есть Last Name
столбец? Я пытался:
{
Header: 'Last Name',
accessor: 'lastName',
disableGrouping: true, // This line
},
Но disableGrouping
не работает.
С наилучшими пожеланиями