You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
A common use case on the web is data tables, using the <table> element... but virtualized.
Can this be done using our implementation?
(Note: column auto-sizing seems basically impossible. All columns would have to be fixed width.)
I can see a few paths here:
Try to hack it by creating a DOM structure that goes table > virtual-scroller > tr. This can only be done with DOM APIs; the parser will transform that into virtual-scroller + table > tr. If this can be made to work, we could consider making it easier to use somehow.
Assemble a virtualized-table using the same internal components we're currently using for virtual-scroller. Then, either:
Virtual tables are really important in enterprise grade SaaS (which are important for GCP :) ). All CRMs, ERPs, "you-name-it" use a huge amount of tables/data grids and virtual scrolling is critical there, because old school pagination is no more suitable and pretty impossible to work with.
Long time ago in some demo project we was testing ExtJS buffered grid. Was working pretty fine. Probably worth to look into because it is one of most "enterprise'e" framework and probably are accumulating huge amount of expertise.
I am not an expert in programming. More like a PO. But yesterday had an idea to try this together with websockets or grpc-web kinda thing. I mean some kind of data streaming.
A common use case on the web is data tables, using the
<table>
element... but virtualized.Can this be done using our implementation?
(Note: column auto-sizing seems basically impossible. All columns would have to be fixed width.)
I can see a few paths here:
table > virtual-scroller > tr
. This can only be done with DOM APIs; the parser will transform that intovirtual-scroller + table > tr
. If this can be made to work, we could consider making it easier to use somehow.This seems like an area ripe for exploration and hacking around.
The text was updated successfully, but these errors were encountered: