[2.2][DUP] RowSelectionModel.selectRow behaves incorrectly at times
[2.2][DUP] RowSelectionModel.selectRow behaves incorrectly at times
Consider the scenario where the selection model allows multiple selections. Function selectRow(index, keepExisting) is called with the following circumstances:
1) Multiple rows selected in the grid
2) The keepExisting flag set to false
3) The selected index is one of the already selected rows
Expected Behavior:
All existing selections are cleared except given index. This is how selectRows works.
Observed Behavior:
Nothing happens. The existing selections all remain selected despite keepExisting being false.