ag-grid是否支持列虚拟化?
Does ag-grid supports column virtualization?
在栏目较多且大部分栏目不在可视区域的场景下尤为重要。
是的,如 documentation、
中所述
By default the grid uses virtualisation; a technique whereby the grid
draws columns and rows as the user scrolls.
但是,如果您希望禁用列虚拟化,您可以选择将 suppressColumnVirtualisation
输入 属性 设置为 true
。您可以参考 here 上的 column/row 属性。
可能有 2 种情况您可能希望禁用列虚拟化。
1) Auto-sizing 所有列。这将确保调整所有列的大小,而不仅仅是屏幕上呈现的列。
2) 支持 a11y。这是为了防止键盘导航和屏幕阅读器出现任何潜在问题。
在栏目较多且大部分栏目不在可视区域的场景下尤为重要。
是的,如 documentation、
中所述By default the grid uses virtualisation; a technique whereby the grid draws columns and rows as the user scrolls.
但是,如果您希望禁用列虚拟化,您可以选择将 suppressColumnVirtualisation
输入 属性 设置为 true
。您可以参考 here 上的 column/row 属性。
可能有 2 种情况您可能希望禁用列虚拟化。
1) Auto-sizing 所有列。这将确保调整所有列的大小,而不仅仅是屏幕上呈现的列。
2) 支持 a11y。这是为了防止键盘导航和屏幕阅读器出现任何潜在问题。