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
When using the DataTable with some larger amount of rows (starting from a few hundred already), rendering time respectively performance gets progressively worse pretty quickly (even operations like expanding/collapsing RowDetails might take seconds depending on the amount of rows, the UI just feels clunky then). This could be avoided by using Virtual Scrolling which basically lets the table only render visible rows. Rows which are not in the current viewport will get removed from the DOM thus drastically improving performance.
The text was updated successfully, but these errors were encountered:
When using the DataTable with some larger amount of rows (starting from a few hundred already), rendering time respectively performance gets progressively worse pretty quickly (even operations like expanding/collapsing RowDetails might take seconds depending on the amount of rows, the UI just feels clunky then). This could be avoided by using Virtual Scrolling which basically lets the table only render visible rows. Rows which are not in the current viewport will get removed from the DOM thus drastically improving performance.
The text was updated successfully, but these errors were encountered: