I test @handable-pro/react: “^2.0.0”.
Nested Header function is our import issue.
I tested Nested headers example.
but it does not show last columns header title.
It did not show perfectly C, G, and M which has colspan.
when I click colum header It does’nt fit col selection. if I click C column it select with P column.
ex.code >
class NestedHeaderTable extends Component {
render() {
return (
<HotTable root=“hot” settings={{
data: Handsontable.helper.createSpreadsheetData(5,10),
colHeaders: true,
rowHeaders: true,
nestedHeaders: [
[‘A’, {label: ‘B’, colspan: 8}, ‘C’],
[‘D’, {label: ‘E’, colspan: 4}, {label: ‘F’, colspan: 4}, ‘G’],
[‘H’, {label: ‘I’, colspan: 2}, {label: ‘J’, colspan: 2}, {label: ‘K’, colspan: 2}, {label: ‘L’, colspan: 2}, ‘M’],
[‘N’, ‘O’, ‘P’, ‘Q’, ‘R’, ‘S’, ‘T’, ‘U’, ‘V’, ‘W’]
]
}} />
)
}
}