Hello @aleksandra_budnik!
We are using Handsontable Pro in our project based on React.js.
I’m trying to make datatable with filters, but there is a strange problem. Look at screenshot please:
When I click on the filters button, nothing happens. Only there is an additional vertical scroll
I set the following settings:
<HotTable settings={{
dataSchema: {ID: null, RefStatus: null, Code: null, Name: null, territory: {ID: null, Name: null}, RefBeginDate: null, RefEndDate: null},
data: this.props.datatable.table,
height: (areaHeight-100),
stretchH: "all",
allowEmpty: true,
fillHandle: false,
columns: [{
data: 'RefStatus',
editor: false,
renderer: this.statusRenderer,
type: 'text',
}, {
data: 'Code',
editor: false,
type: 'text',
}, {
data: 'Name',
editor: false,
type: 'text',
}, {
data: 'territory.Name',
editor: false,
type: 'text',
}, {
data: 'RefBeginDate',
editor: false,
renderer: this.dateRenderer,
type: 'text',
}, {
data: 'RefEndDate',
editor: false,
renderer: this.dateRenderer,
type: 'text',
}
],
colWidths: [40, 60, 300, 120, 80, 80],
columnSorting: true,
sortIndicator: true,
filters: true,
dropdownMenu: true,
}} />
I will wait for your answer