cloud-web-corejs 1.0.54-dev.406 → 1.0.54-dev.407

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.54-dev.406",
4
+ "version": "1.0.54-dev.407",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -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.setDisabled(true)
2878
+ this.setGridDisabled(true)
2879
2879
  },
2880
-
2881
2880
  enableGridForm() {
2882
- this.setDisabled(false)
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
- } else {
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
  }