@rangertechnologies/ngnxt 2.1.302 → 2.1.303
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.
|
@@ -51841,7 +51841,9 @@ class NxtDatatable {
|
|
|
51841
51841
|
const end = start + Number(this.pageSize);
|
|
51842
51842
|
this.filterBoxData = this.data;
|
|
51843
51843
|
this.filterTableNos = this.filterBoxData?.length;
|
|
51844
|
-
|
|
51844
|
+
if (!this.pagination) {
|
|
51845
|
+
this.dataSource.data = this.data?.slice(start, end);
|
|
51846
|
+
}
|
|
51845
51847
|
this.data = this.originalData;
|
|
51846
51848
|
this.sortData(this.currentSortColumn, this.currentSortDirection, undefined, from);
|
|
51847
51849
|
}
|
|
@@ -52160,10 +52162,10 @@ class NxtDatatable {
|
|
|
52160
52162
|
}
|
|
52161
52163
|
updateEdit(index, value, element, column, type) {
|
|
52162
52164
|
if (type === 'list') {
|
|
52163
|
-
value = (value.valueObj && typeof value.valueObj === 'object' && !Array.isArray(value.valueObj)) ? value.isObject ? value?.valueObj : this.dataService.getValue(value?.valueObj, value?.field) : value
|
|
52165
|
+
value = (value.valueObj && typeof value.valueObj === 'object' && !Array.isArray(value.valueObj)) ? value.isObject ? value?.valueObj : this.dataService.getValue(value?.valueObj, value?.field) : value?.valueObj;
|
|
52164
52166
|
}
|
|
52165
52167
|
else {
|
|
52166
|
-
value = value
|
|
52168
|
+
value = value?.valueObj ? value.valueObj : value;
|
|
52167
52169
|
}
|
|
52168
52170
|
const updatedElement = this.updateValue(element, column, value);
|
|
52169
52171
|
// SKS22JUL25 Invalidate cache for this row and column
|
|
@@ -58060,7 +58062,7 @@ const VERSION = {
|
|
|
58060
58062
|
"semver": null,
|
|
58061
58063
|
"suffix": "68a4eb8b-dirty",
|
|
58062
58064
|
"semverString": null,
|
|
58063
|
-
"version": "2.1.
|
|
58065
|
+
"version": "2.1.303"
|
|
58064
58066
|
};
|
|
58065
58067
|
/* tslint:enable */
|
|
58066
58068
|
|