Skip to content

Way to edit a cell when also using setSelectingMode(PlutoGridSelectingMode.row) #974

Closed Answered by g-regoz
g-regoz asked this question in Q&A
Discussion options

You must be logged in to vote

There is a combination of settings that will achieve the desired effect.

PlutoGrid(
                      columns: setupCtrl.columns,
                      rows: setupCtrl.rows,
                      // mode: PlutoGridMode.selectWithOneTap,  <-- do not set this

                      onLoaded: (PlutoGridOnLoadedEvent event) {
                          event.stateManager.setShowColumnFilter(false);
                          event.stateManager.setSelectingMode(PlutoGridSelectingMode.cell);  //<-- set this option
                        }
                      },


Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by g-regoz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant