Hello,
It’s been awesome working with Handsontable!
I am using handsontable v7.3.0 with ColumnSorting feature.
When the column header is clicked twice i.e. ascending and then descending, after clearing sort on table, the sort indicator in header remains active specifically in IE 11. Clear sort works fine on chrome.
The application in which handsontable is used supports mainly IE.
Also when sort is applied on different columns the previous column header’s(on which sort was applied with double clicking) sort indicator(arrow) remains active throughout.
Can I get help here please?
var hotConfig = {
data : data,
columnSorting : true,
...
}
function clearSort(hotInstance) {
var sortingPlugin = hotInstance.getPlugin('columnSorting');
sortingPlugin.clearSort();
}