@esfaenza/es-table 15.2.21 → 15.2.23

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);
@@ -1519,6 +1519,7 @@ class DynamicModeHandler {
1519
1519
  getTdFromOperation(op) {
1520
1520
  let td = new EsTdDirective(null);
1521
1521
  td.td = op.id;
1522
+ td.tdVisible = true;
1522
1523
  td.tdIconClass = op.iconClass;
1523
1524
  td.tdConditionField = op.conditionField;
1524
1525
  td.tdConditionValue = op.conditionValue;