()
| 49 | } |
| 50 | |
| 51 | hasFrozenColumns() { |
| 52 | return this._cache('hasFrozenColumns', () => { |
| 53 | return this._fixed && this.getVisibleColumns().some(column => !!column.frozen); |
| 54 | }); |
| 55 | } |
| 56 | |
| 57 | hasLeftFrozenColumns() { |
| 58 | return this._cache('hasLeftFrozenColumns', () => { |
no test coverage detected