Replies: 13 comments 4 replies
-
There is no way to implement multiselect using build in editors. You would have to write your own cell editor (possibly by extending an existing one). See Understanding cell editors for a detailed instruction on how to write your own cell editor. |
Beta Was this translation helpful? Give feedback.
-
We are closing issues related to feature requests to create a full document based on that ideas from all our sources. It is avaiable is our wiki section. |
Beta Was this translation helpful? Give feedback.
-
@AMBudnik |
Beta Was this translation helpful? Give feedback.
-
Hi @cumtwwei the feature is not yet available. |
Beta Was this translation helpful? Give feedback.
-
6 years passed. Why not solved yet? Would you please just add this feature?@AMBudnik |
Beta Was this translation helpful? Give feedback.
-
It was never the no 1 priority. We are aware that many users are waiting for this feature to be added, however, I cannot guarantee that it will be added this year. |
Beta Was this translation helpful? Give feedback.
-
Probably the following can be a solution: |
Beta Was this translation helpful? Give feedback.
-
Thanks can I use it in react, are there any compatibility problems with react |
Beta Was this translation helpful? Give feedback.
-
As there aren't many comments on closed issues, we decided to reopen the feature requests as Github Discussions. Please feel free to share any feedback that will allow us to compose the full list of requirements for the proposed change. Note to myself : update threads https://forum.handsontable.com/t/gh-2498-select-editor-with-multiple-selections-enable/5747/2, #2498, #9079, ZD |
Beta Was this translation helpful? Give feedback.
-
My view on this: The Multi-select cell type (the version you developed) improvement suggestion:
|
Beta Was this translation helpful? Give feedback.
-
Hi Alexandra, @AMBudnik for anyone who wants to implement a very quick workaround. this approach worked for my case: const settings: Handsontable.GridSettings = {
// ...
afterOnCellMouseDown(event, cell) => {
if (cell.col == 1) {
// open a dialog and map the user input to the cell using:
this.hotTableRegisterer
.getInstance('id')
.setDataAtCell(cell.row, cell.col, valueFromDialog);
}
}
} |
Beta Was this translation helpful? Give feedback.
-
Hey guys, is there any perspective on when this feature will be implemented ? |
Beta Was this translation helpful? Give feedback.
-
Hi @gbuldrini It's still in our backlog. We will update you when we have any news about the project. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
How to implementation multiselection in a dropdown menu?
Beta Was this translation helpful? Give feedback.
All reactions