How can I dynamically switch between row selection and inline editing (with enableExcelCopyBuffer)? #1120
Replies: 2 comments 1 reply
-
I'd like to avoid doing something like
|
Beta Was this translation helpful? Give feedback.
-
The reason is because they both use different Selection Models ( https://stackoverflow.com/a/76810071/1212166 Out of topic, I left some comments in your opened PR and waited to do a release but I want to do one in the coming days with or without your PR. I'm getting closer to a Slickgrid-Universal new major alpha release and want current master branch to be fully released before a major alpha release, however on the Aurelia side the next major (before Christmas) will migrate and require Aurelia 2. I also don't usually support older version once new major versions are out, I just got too many libs to support for free |
Beta Was this translation helpful? Give feedback.
-
/**
*/
enableExcelCopyBuffer?: boolean;
Because of the limitation with
enableExcelCopyBuffer
we're looking at having a toggle that switches between an edit and a select mode. WhenisEditMode
changes we reset thegridOptions
and call slickGrid.init(). This only works but only when going from select mode to edit. When going the other way, the checkboxes do not reappear?Beta Was this translation helpful? Give feedback.
All reactions