HI
I’m getting a warning message from handsontable in my console
handsontable 6.2.2 doesn’t have this issue but it isn’t compatible with angular 8 as hidden columns are displayed.
Note: Warning present on initial load of handsontables
[Violation] ‘message’ handler took 381ms handsontable.full.js
var listener = function (event) {
run(event.data);
};
I believe this is causing an issue with my loading screen overlay to stay active until you click the screen. Sorry previous issue not fixed and we closed it
I am reloading the screen/handsontables
This is getting called when resetting the page by calling this.ngAfterViewInit();
I clear handsontables with the following code.
if (this.GTable !== null) {
debugger
this.GTable.clearUndo();
this.GTable.destroy();
this.GTable = null;
$(".htMenu").remove();
$("#htdiv").html("");
this.sumDataColsInitFlag = true;
}
Any ideas on how to fix/workaround. Thank you