1. We have a webapp built using SmartGWT 4.0
2. There is a menu option to display some information, so we are using a ListGrid.
3. Within this ListGrid there is a column with custom CSS, so that when data is loaded, it displays a specific background color depending on its value (each value indicates a priority):
4. I tried to intercept events like addSortChangedHandler, addFetchDataHandler or addDataArrivedHandler to see if one of them changed the sorting configuration, but I couldn't find anything
What other event could be causing this behavior, or what other events should I check?
I appreciate your help!
2. There is a menu option to display some information, so we are using a ListGrid.
3. Within this ListGrid there is a column with custom CSS, so that when data is loaded, it displays a specific background color depending on its value (each value indicates a priority):
- I opened the report which had a defaul sorting configuration
- On the header context menu, I selected "Configure Sort..." option to modify the sorting columns
- I changed the name of the current sorting column for the color Column, and then added any other column
- I accepted the changes in sort configuration
- In order to load all records, I scrolled down to the end of the ListGrid and the information was displayed according to the color priority order
- After all records were fetched, I went back to the beginning but, somehow, while I scrolled back, the order of the rows changed
4. I tried to intercept events like addSortChangedHandler, addFetchDataHandler or addDataArrivedHandler to see if one of them changed the sorting configuration, but I couldn't find anything
What other event could be causing this behavior, or what other events should I check?
I appreciate your help!
Comment