Greeting,
I am using angular 8.
I have an HOT with settings
hotSettings?: Handsontable.GridSettings = {
[…],
minSpareRows: 1,
[…]
}
It is working perfectly.
But, When I decide to filter the data, and then sorting the results, it sorts everythings… but the last.
so I tried by changing the settings to:
minSpareRows:0
and It is working like a charm.
The problem is, I need it with minSpareRows:1.
So I’m stuck.
Maybe, and it is just a thought, it is bug.