@esfaenza/es-table 15.2.20 → 15.2.22
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.
|
@@ -1511,12 +1511,15 @@ class DynamicModeHandler {
|
|
|
1511
1511
|
getThFromOperation(op) {
|
|
1512
1512
|
let th = new EsThDirective(null);
|
|
1513
1513
|
th.th = op.id;
|
|
1514
|
+
th.thFixed = true;
|
|
1515
|
+
th.thVisible = true;
|
|
1514
1516
|
th.thStaticContent = "";
|
|
1515
1517
|
return th;
|
|
1516
1518
|
}
|
|
1517
1519
|
getTdFromOperation(op) {
|
|
1518
1520
|
let td = new EsTdDirective(null);
|
|
1519
1521
|
td.td = op.id;
|
|
1522
|
+
td.tdVisible = true;
|
|
1520
1523
|
td.tdIconClass = op.iconClass;
|
|
1521
1524
|
td.tdConditionField = op.conditionField;
|
|
1522
1525
|
td.tdConditionValue = op.conditionValue;
|