You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using a SelectGrid with a TableSelectionModel using the selection mode TableSelectionMode.SHIFT.
When selecting a previously unselected row without holding the Ctrl key, the underlying CtrlClickSelectionHandler calls SelectionModel<JsonObject>.deselectAll(). This triggers an event with an empty selection, almost immediately following by an event with the newly selected row.
When selecting a row as described above, the logger returns the following:
[DEBUG] 0 entries in selection
[DEBUG] 1 entries in selection
I would have expected only one event containing the new selection instead of two, one of which contains an empty selection. Is it possible to allow for this behaviour?
The text was updated successfully, but these errors were encountered:
I am using a
SelectGrid
with aTableSelectionModel
using the selection modeTableSelectionMode.SHIFT
.When selecting a previously unselected row without holding the Ctrl key, the underlying
CtrlClickSelectionHandler
callsSelectionModel<JsonObject>.deselectAll()
. This triggers an event with an empty selection, almost immediately following by an event with the newly selected row.Example:
When selecting a row as described above, the logger returns the following:
I would have expected only one event containing the new selection instead of two, one of which contains an empty selection. Is it possible to allow for this behaviour?
The text was updated successfully, but these errors were encountered: