cloud-web-corejs 1.0.54-dev.406 → 1.0.54-dev.408
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
|
@@ -703,9 +703,9 @@ tmixins = {
|
|
|
703
703
|
medium = null,
|
|
704
704
|
source = null;
|
|
705
705
|
if (this.$commonFileUtil.isPicture(extension)) {
|
|
706
|
-
thumbnail = url;
|
|
707
|
-
large = url;
|
|
708
|
-
medium = url;
|
|
706
|
+
// thumbnail = url;
|
|
707
|
+
// large = url;
|
|
708
|
+
// medium = url;
|
|
709
709
|
source = url;
|
|
710
710
|
}
|
|
711
711
|
|
|
@@ -2875,11 +2875,10 @@ modules = {
|
|
|
2875
2875
|
},
|
|
2876
2876
|
//xk begin
|
|
2877
2877
|
disableGridForm() {
|
|
2878
|
-
this.
|
|
2878
|
+
this.setGridDisabled(true)
|
|
2879
2879
|
},
|
|
2880
|
-
|
|
2881
2880
|
enableGridForm() {
|
|
2882
|
-
this.
|
|
2881
|
+
this.setGridDisabled(false)
|
|
2883
2882
|
},
|
|
2884
2883
|
//xk end
|
|
2885
2884
|
},
|
|
@@ -1816,7 +1816,9 @@ modules = {
|
|
|
1816
1816
|
foundW.widget.type === "grid-sub-form"
|
|
1817
1817
|
) {
|
|
1818
1818
|
foundW.disableGridSubForm();
|
|
1819
|
-
}
|
|
1819
|
+
}else if (!!foundW.widget && foundW.widget.type === "data-table") {
|
|
1820
|
+
foundW.disableGridForm();
|
|
1821
|
+
} else {
|
|
1820
1822
|
!!foundW.setDisabled && foundW.setDisabled(true);
|
|
1821
1823
|
}
|
|
1822
1824
|
}
|
|
@@ -1838,6 +1840,8 @@ modules = {
|
|
|
1838
1840
|
foundW.widget.type === "grid-sub-form"
|
|
1839
1841
|
) {
|
|
1840
1842
|
foundW.enableGridSubForm();
|
|
1843
|
+
}else if (!!foundW.widget && foundW.widget.type === "data-table") {
|
|
1844
|
+
foundW.enableGridForm();
|
|
1841
1845
|
} else {
|
|
1842
1846
|
!!foundW.setDisabled && foundW.setDisabled(false);
|
|
1843
1847
|
}
|
|
@@ -427,7 +427,7 @@ export function traverseFieldWidgetsOfContainer(
|
|
|
427
427
|
loopHandleWidgetItem(childItem, con, handler);
|
|
428
428
|
});
|
|
429
429
|
}
|
|
430
|
-
if (!!
|
|
430
|
+
if (!!con.buttons) {
|
|
431
431
|
con.buttons.forEach((childItem) => {
|
|
432
432
|
loopHandleWidgetItem(childItem, con, handler);
|
|
433
433
|
});
|