Can row grouping be case insentitive?
Can row grouping be case insentitive?
JimmyWaldro
Posts: 1Questions: 1Answers: 0
When using row grouping the data is grouped by the column you specify but if the data has values with different cases it groups them independently. i.e. "London" and "LONDON" would be grouped separately. Is there a way to make it case insensitive so they would be grouped together?
This discussion has been closed.
Answers
In the grouping example it uses
if ( last !== group ) {
. You could change that to compare the two values case insensitive (just make them both lowercase for example).Allan