()
| 64 | } |
| 65 | |
| 66 | hasRightFrozenColumns() { |
| 67 | return this._cache('hasRightFrozenColumns', () => { |
| 68 | return this._fixed && this.getVisibleColumns().some(column => column.frozen === FrozenDirection.RIGHT); |
| 69 | }); |
| 70 | } |
| 71 | |
| 72 | getMainColumns() { |
| 73 | return this._cache('mainColumns', () => { |
no test coverage detected