Handle Character #203
NiranjanShah
started this conversation in
General
Replies: 1 comment 1 reply
-
selectingMode has cell, row, none, and this has nothing to do with editing mode. A condition to select a row. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In PlutoGridKeyManager there is a function _handleCharacter which is as below, there must be a condition only to _handleCharacter if the grid is in edit, Currently even though the grid is in SelectMode, this event is taking place
void _handleCharacter(PlutoKeyManagerEvent plutoKeyManagerEvent) {
**below if statement must be added (as per me
if (stateManager.selectingMode == PlutoGridSelectingMode.none){
return;
}
**
}
Beta Was this translation helpful? Give feedback.
All reactions