@esfaenza/es-table 15.2.22 → 15.2.24
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.
|
@@ -909,7 +909,7 @@ class ColumnMetadataHandler {
|
|
|
909
909
|
let newColset = [];
|
|
910
910
|
if (!this.est.ColumnsList || this.est.ColumnsList.length == 0)
|
|
911
911
|
return;
|
|
912
|
-
let columns = this.est.viewMode ? (this.est.DynamicRowColumnsDefinition?.map(t => t.PropertyName) || view.columns) : this.est.arrayColumns;
|
|
912
|
+
let columns = this.est.viewMode ? ([...(this.est.DynamicRowColumnsDefinition?.map(t => t.PropertyName) || []), ...(this.est.DynamicOperations?.map(t => t.id) || [])] || view.columns) : this.est.arrayColumns;
|
|
913
913
|
this.est.ColumnsList.forEach(c => {
|
|
914
914
|
// Se la colonna è pinnata mi arriva col simoleon, ma anche se è una composizione di più colonne
|
|
915
915
|
let exCl = columns.filter(cc => (cc.startsWith('§') ? cc.substring(1) : cc) == c.id);
|