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
Collapse the accessibility elements into aria attributes
The biggest lag/performance impact observed has been during cell creation, including pagination but especially during the initial mount & rendering. A few thoughts:
On pagination, right now cells are explicitly unmounted & re-created - virtualization(WIP) might already resolve this
From looking at devtool profiling, DOM element creation by React is expensive, and every cell is very DOM intensive
When using the provided in-memory operations every cell is rendered in an unmounted document fragment. Is anything optimizable in this process?
The text was updated successfully, but these errors were encountered:
👋 Hi there - this issue hasn't had any activity in 6 months. If the EUI team has not explicitly expressed that this is something on our roadmap, it's unlikely that we'll pick this issue up. We would sincerely appreciate a PR/community contribution if this is something that matters to you! If not, and there is no further activity on this issue for another 6 months (i.e. it's stale for over a year), the issue will be auto-closed.
❌ Per our previous message, this issue is auto-closing after having been open and inactive for a year. If you strongly feel this is still a high-priority issue, or are interested in contributing, please leave a comment or open a new issue linking to this one for context.
Meta issue for tracking/organizing data grid performance.
The biggest lag/performance impact observed has been during cell creation, including pagination but especially during the initial mount & rendering. A few thoughts:
The text was updated successfully, but these errors were encountered: