()
| 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 |
nothing calls this directly
no test coverage detected