I am using HandsOnTablePRO 1.14.2.
The business req is paste the data on grid and import the same to server. While pasting, it is taking 3.5 - 5 min for the grid to refresh. Until then focus stays on first cell and hangs.
Any pointer on tuning this?
<hot-table
[hotId]=“instance”
[colHeaders]=“gridHeader”
[rowHeaders]=“false”
[dropdownMenu]=“dropdownMenu”
[filters]=“true”
[data]=“gridData”
(beforeCopy)=“beforeCopy($event)”
(beforePaste)=“beforePaste($event)”
(afterChange)=“afterChange($event)”
[contextMenu]=“contextMenu”
[sortIndicator]=“true”
[columnSorting]=“true”
[autoColumnSize]=“true”
[manualColumnMove]=“false”
[allowInsertColumn]=“true”
[manualRowMove] =“true”
[columns]=“columns”
[copyPaste]=“true”
(afterInit)=“showLoader($event)”
(afterLoadData)=“hideLoader($event)”