Is it possible to sort cells corresponding to a rowspan cell.
For example, here is a grid with A a cell rowspan=3
I’m trying to sort the grid by column c2 ASC.
Initialization
c1 c2
| 2
A | 1
| 3
B | 0
C | 2
What i get
c1 c2
B | 0
| 2
A | 1
| 3
C | 2
What i want
c1 c2
B | 0
| 1 ]
A | 2 ] Cells corresponding to A are sorted
| 3 ]
C | 2
thanks
Guillaume
Unfortunately such type of sorting impossible. Only whole rows can be sorder, not stand alone cells.