Jason Smith
Jason Smith
After more consideration I think the API should look like this: ```ts type RowGroup = { readonly headerIndex: number; readonly isCollapsed: boolean; readonly subGroups?: readonly RowGroup[]; } | number; interface...
Great question, I am not intending to allow arbitrary amounts of collection. Such a thing presents significant additional complexity I do not wish to resolve. The only reasonable path forward...
There is a major 5 letter company using GDG internally that forked it to add the grouping and subgrouping feature. I want to bring them back into the fold as...
1. Yes this understanding is correct. We do not manage your data structure. This is a fundamental difference between GDG and many other data tables. There are projects out there...
There also needs to be a callback for expanding a row when a cell in a collapsed row is activated or someone pressed right.
Active development here: https://github.com/glideapps/glide-data-grid/tree/jason/row-grouping Right now the basic feature set works. There are lots of odds and ends to tie up.
It would be great if you could poke at it. The solution here is that the `onHeaderMenuClick` event needs to emit when there is a long touch (and the other...
If the package we choose is good enough it might even be possible to get the highlighting into the rendered cell
The general rationale here is to make the copy/paste fully compatible (as much as possible) with excel, excel online, google sheets, and apple numbers. The copy buffer contents are both...
I think what we need to do is add a callback for this event so that the user can decide what to do. In our app we actually want it...