Hi,
I have a list grid where I set static data via setData(record_array). My data contains 80000 rows, is presorted by one column, and I want to reflect this fact in UI, but without calling setSort/sort APIs, as they do a costly resort - about 18 seconds in my browser.
I've already tried:
For now I've disabled sorting, but I would like to know whether it is possible to make my list appear sorted.
I have a list grid where I set static data via setData(record_array). My data contains 80000 rows, is presorted by one column, and I want to reflect this fact in UI, but without calling setSort/sort APIs, as they do a costly resort - about 18 seconds in my browser.
I've already tried:
- creating a local DataSource, setting data via ResultSet with my records in allRows, and sortSpecifiers set to the same value as my grid
- using displaySort API - which according to docs should work for me, but apparently does nothing with passed list of sort spoecifiers
For now I've disabled sorting, but I would like to know whether it is possible to make my list appear sorted.
Comment