Hello,
I have a list grid that has these properties:
These drag and select features are awesome. The issue I run into is when I have a large data resultSet (lets say 100 records) in the grid and need to scroll, I select a record on the bottom of the grid but the grid scrolls to the top and the last visible record gets selected.
Steps to reproduce:
1) Fetch all data which requires scrolling.
2) Make an edit in of the top rows and save.
3) FOCUS OFF browser (click anywhere off the browser like selecting a file to view). Users do this all the time to view work from excel or downloaded files to compare with grid data...
4) Don't refocus but scroll down in grid to last record (very bottom and select a column)
5) This causes a refocus and grid will scroll to top and select the last visible record in grid.
This ONLY occurs when using setCanSelectCells(true).
Please let me know if you need anything else.
-Zhene
I have a list grid that has these properties:
Code:
ListGrid grid = new ListGrid(); grid.setCanEdit(true); grid.setCanSelectAll(true); grid.setCanDragSelect(true); // these are what need to be tested grid.setCanSelectCells(true);// these are what need to be tested grid.setShowRecordComponents(true); grid.setShowRecordComponentsByCell(true);
Steps to reproduce:
1) Fetch all data which requires scrolling.
2) Make an edit in of the top rows and save.
3) FOCUS OFF browser (click anywhere off the browser like selecting a file to view). Users do this all the time to view work from excel or downloaded files to compare with grid data...
4) Don't refocus but scroll down in grid to last record (very bottom and select a column)
5) This causes a refocus and grid will scroll to top and select the last visible record in grid.
This ONLY occurs when using setCanSelectCells(true).
Please let me know if you need anything else.
-Zhene
Comment