I want to record the index of some Records which is modified before sort and filter. But after sort and filter, the Record.Index is changed. I find RecordManager provide UnSorted and GetFilteredOutDataRecords.
I want to know which one I can use for finding the record with the index I save.
Sorting and filtering cannot be at the same time. You probably mean Sorting then Filtering. If that's the case then correct - the Unsorted is the original order.
Sam
I did a test. I found if you do sort and filtering at same time, the Unsorted is in the original order. Am I right?
Hello,
You have two different operations. Before sorting you can use Unsorted property to obtain the record index. Before filtering you can use GetFilterOutRecords method to retrieve the record index handling RecordFilterChanging event.