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

Method hasLeftFrozenColumns

src/ColumnManager.js:57–64  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

55 }
56
57 hasLeftFrozenColumns() {
58 return this._cache('hasLeftFrozenColumns', () => {
59 return (
60 this._fixed &&
61 this.getVisibleColumns().some(column => column.frozen === FrozenDirection.LEFT || column.frozen === true)
62 );
63 });
64 }
65
66 hasRightFrozenColumns() {
67 return this._cache('hasRightFrozenColumns', () => {

Callers 2

constructorMethod · 0.80
BaseTable.jsFile · 0.80

Calls 2

_cacheMethod · 0.95
getVisibleColumnsMethod · 0.95

Tested by

no test coverage detected