Jason Smith

Results 122 comments of Jason Smith
trafficstars

So the implementation of this is fairly straightforward: - Make it possible to efficiently not draw vertical borders for certain rows without spanning the columns. This is going to make...

API sketching: ```ts interface StickyRowData { /** * The indexes of the rows to make sticky, this must include the 0th row. * @group Data */ readonly rows: CompactSelection; /**...

Yeah I saw them, I just decided if you want that you will need to add span cells and deal with that problem yourself. Looking at your interface this is...

Since we can easily compute the size of each group it is easy to integrate into the walkRows algorithm to automatically skip the entire group without incurring significant overhead. The...

Another random thought: Any time this prop changes at all blit needs to be calculated false.

1) The reason the grid needs to handle the collapsing and not the developer is line numbers will be off otherwise. The grid wont know about the missing rows. The...

Sorry I wasn't clear. A singular frozen row is visually equal to ```ts rowGroups: { groups: [0], makeGroupHeadersSticky: true, height: 32, } ```

Another thing to remember, the top drop shadow will have to be taught how to play nice with this. I think the simplest move is to fade the shadow out...

Sticking them at the bottom is significantly harder because the trailing row affordance is currently not easily expandable.

yall are killing me here