MCPcopy Index your code
hub / github.com/angular/components / fixedLayout

Method fixedLayout

src/cdk/table/table.ts:569–573  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

567 */
568 @Input({transform: booleanAttribute})
569 get fixedLayout(): boolean {
570 // Require a fixed layout when virtual scrolling is enabled, otherwise
571 // the element the header can jump around as the user is scrolling.
572 return this._virtualScrollEnabled() ? true : this._fixedLayout;
573 }
574 set fixedLayout(value: boolean) {
575 this._fixedLayout = value;
576

Callers

nothing calls this directly

Calls 1

_virtualScrollEnabledMethod · 0.95

Tested by

no test coverage detected