Open
Description
- bug: H scroll doesn't scroll the top row. Is this normal? I've tried every layout and it still does this.
Environment Details
- react-tabulator version: 0.21.0
- OS: macOS
<ReactTabulator
className="compact celled"
columns={currentColumns}
data={data}
options={{
layout: 'fitDataTable',
virtualDomHoz: true,
height: tableHeight,
movableColumns: isTable,
currentColumns is one row column, and then the data headers.
const rowNumColumn = {
title: 'Row',
field: 'row',
width: 75,
hozAlign: 'center',
headerSort: false,
frozen: false
} as const;
const dataColumns = importRecord
.get('header')
.map((h) => ({ title: h, field: h, editor, headerMenu, headerSort: false }))
.toArray();
return [rowNumColumn, ...dataColumns];
Really trying to figure out what I'm doing wrong...
Metadata
Metadata
Assignees
Labels
No labels