Hi
I’m using version version 7.4.2 and am finding the row header heights are not matching up with the actual row heights - see below.
Settings for the table are:
hotSettings = () => {
return {
licenseKey: “non-commercial-and-evaluation”,
data: this.props.values.dataToView,
colHeaders: this.colHeaders(),
columns: this.columns(),
rowHeaders: true,
readOnly: true,
manualColumnMove: true,
manualRowMove: true,
manualColumnResize: true,
manualRowResize: true,
filters: true,
dropdownMenu: [
“filter_by_condition”,
“filter_by_value”,
“filter_action_bar”, //OK, Cancel button
],
columnSorting: true,
contextMenu: this.contextMenus(),
};
};
I’m using version 7.4.2 as I am using various hooks (afterRowMove, afterFilter etc) to update code and statuses elsewhere, as there are issues associated with this in the current version, for example placing code in the afterFilter event will prevent the filter from working.
Can anyone give me any suggestions, help etc?
Cheers