cloud-web-corejs 1.0.54-dev.433 → 1.0.54-dev.434
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/package.json
CHANGED
|
@@ -2821,6 +2821,23 @@ modules = {
|
|
|
2821
2821
|
});
|
|
2822
2822
|
}
|
|
2823
2823
|
|
|
2824
|
+
this.loodHandleColumns(this.widget.options.tableColumns,(column)=>{
|
|
2825
|
+
if(column.widget){
|
|
2826
|
+
let widget = column.widget;
|
|
2827
|
+
if(this.isDisHandleWidget(widget, ignoreFields)){
|
|
2828
|
+
widget.options.disabled = disabled
|
|
2829
|
+
}
|
|
2830
|
+
}
|
|
2831
|
+
let widgetList = column.widgetList;
|
|
2832
|
+
if (widgetList && widgetList.length) {
|
|
2833
|
+
traverseAllWidgetsNew(widgetList, (widget) => {
|
|
2834
|
+
if(this.isDisHandleWidget(widget, ignoreFields)){
|
|
2835
|
+
widget.options.disabled = disabled
|
|
2836
|
+
}
|
|
2837
|
+
});
|
|
2838
|
+
}
|
|
2839
|
+
})
|
|
2840
|
+
|
|
2824
2841
|
let target = this.getGridTable();
|
|
2825
2842
|
let { fullColumn } = target.getTableColumn();
|
|
2826
2843
|
this.loodHandleColumns(fullColumn,(column)=>{
|
|
@@ -2845,6 +2862,8 @@ modules = {
|
|
|
2845
2862
|
this.setRowDisabled(disabled, rowIndex, ignoreFields)
|
|
2846
2863
|
})
|
|
2847
2864
|
}
|
|
2865
|
+
|
|
2866
|
+
|
|
2848
2867
|
},
|
|
2849
2868
|
setRowDisabled(disabled, rowIndex, ignoreFields){
|
|
2850
2869
|
let gsfFWList = []
|