i mimic a file/folder view with the iGrid and need to sort the iGrid by two different values which are stored at the same column.
The first value is stored as ExtraData (0=folder,1=file).
The second value is the cell text (file/folder names).
I used this code, but it looks like the 2. AddItem overwrites the 1. AddItem:
With iGrid.SortObject
.Clear
.AddItem 1, igSortAsc, igSortByExtraData
.AddItem 1, igSortAsc, igSortByCellTextNoCase
End With
Is it not possible to sort by x values from only one cloumn?