diff --git a/src/cdk/table/table.md b/src/cdk/table/table.md index 6eb285d3baf1..487b1e37822c 100644 --- a/src/cdk/table/table.md +++ b/src/cdk/table/table.md @@ -135,6 +135,18 @@ updates. This can be based on _anything_: websocket connections, user interactio time-based intervals, etc. Most commonly, updates will be triggered by user interactions like sorting and pagination. +##### `fixedLayout` +The CDK table measures the dimensions of sticky elements before applying the styles that make them +"stick". Because native tables derive column widths from the content within each cell, these +dimensions are re-checked when the underlying data changes. + +Enabling `fixedLayout` will enforce uniform column widths, so the table can reliably cache and reuse +them when calculating sticky styles. This can reduce rendering latency for large native tables. + +```html +