@esfaenza/es-table 11.2.132 → 11.2.134
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/esfaenza-es-table.umd.js +2 -1
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esm2015/lib/core/handlers/ColumnMetadataHandler.js +2 -2
- package/esm2015/lib/domain/externals/appsearch/AppSearch.js +2 -1
- package/fesm2015/esfaenza-es-table.js +2 -1
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/package.json +6 -6
|
@@ -510,6 +510,7 @@
|
|
|
510
510
|
aps.items = [];
|
|
511
511
|
var newref = JSON.parse(JSON.stringify(aps));
|
|
512
512
|
newref.items = items;
|
|
513
|
+
newref.page = 1;
|
|
513
514
|
return newref;
|
|
514
515
|
};
|
|
515
516
|
return AppSearch;
|
|
@@ -1095,7 +1096,7 @@
|
|
|
1095
1096
|
column_ordering: this.utiExts.deepClone(columnsOrderings),
|
|
1096
1097
|
orders: this.utiExts.deepClone(columnOrders)
|
|
1097
1098
|
};
|
|
1098
|
-
this.prefService.setItem(this.est.ngControl.name, toStore
|
|
1099
|
+
this.prefService.setItem(this.est.ngControl.name, toStore).subscribe();
|
|
1099
1100
|
};
|
|
1100
1101
|
/**
|
|
1101
1102
|
* Partendo dagli **EsThs** estrappolo la lista di **EsTableColumn** che questa tabella dovrà eventualmente gestire per Visibilità e Ordine
|