-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Labels
Description
I you use $index to return the current row index, it will be binded to the "actual" index instead of the "real" index.
Case: sort A-Z, first row correctly display $index = 0. Now order Z-A, first row is a "z..." element and its index is 0. WRONG
$index should be maintained, you must work to ensure sorting algorithm won't touch index order.
Regards