MCPcopy Create free account
hub / github.com/Autodesk/react-base-table / getRightFrozenColumns

Method getRightFrozenColumns

src/ColumnManager.js:102–107  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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);

Callers 3

getMainColumnsMethod · 0.95
BaseTable.jsFile · 0.80

Calls 2

_cacheMethod · 0.95
getVisibleColumnsMethod · 0.95

Tested by

no test coverage detected