No, my concern is difference.
I am working with Angular JS (Ver. 7) framework, and use Handson table in one of component.
I have persistentState enable as like below
<hot-table
[hotId]=“source_matrix”
[rowHeaders]=“false”
[data]=“datasetpass”
[colHeaders]="[‘Inventroy ID’,‘Warehouse Product Name’,‘Client Product ID’,‘Expiration Date’,‘Client Product #’,‘Supplier Product #’,‘Warehouse Product #’]"
[filters]=“true”
[dropdownMenu]=“true”
[stretchH]=“none”
[columnSorting]=“true”
[manualColumnMove]=“true”
[manualColumnResize]=“true”
[persistentState]=“true”>
But, when I change width or sort any column, Its show value saved in localstorage, but when I reload page, handson table appear as default setting. means column width or sorting not applied.
But this is working in HTML page, which I have ready for POC.
Here any problem with handson table persistentState with Angular framework.