()
| 100 | } |
| 101 | |
| 102 | getRightFrozenColumns() { |
| 103 | return this._cache('rightFrozenColumns', () => { |
| 104 | if (!this._fixed) return []; |
| 105 | return this.getVisibleColumns().filter(column => column.frozen === FrozenDirection.RIGHT); |
| 106 | }); |
| 107 | } |
| 108 | |
| 109 | getColumn(key) { |
| 110 | const idx = this._columns.findIndex(column => column.key === key); |
no test coverage detected