提交 b0d01ee5 编写于 作者: 蔡祥熠

Merge branch 'fix/Process.form_datatable' into 'wrdp'

Merge of fix/Process.form_datatable 修复数据表格滚动条问题、修复查询语句操作条问题 to wrdp

See merge request o2oa/o2oa!4268

(cherry picked from commit 696321fe)

15a81f99 修复数据表格滚动条的问题
491437bc 修复查询语句操作条的问题
上级 138dda31
...@@ -234,7 +234,8 @@ ...@@ -234,7 +234,8 @@
"datatable": { "datatable": {
"styles": {}, "styles": {},
"tableStyles": { "tableStyles": {
"border": "1px solid #cccccc" "border": "1px solid #cccccc",
"width": "calc(100% - 2px)"
}, },
"titleStyles": { "titleStyles": {
"height": "28px", "height": "28px",
......
...@@ -244,7 +244,8 @@ ...@@ -244,7 +244,8 @@
"styles": {}, "styles": {},
"tableStyles": { "tableStyles": {
"border-top": "1px solid #666666", "border-top": "1px solid #666666",
"border-left": "1px solid #666666" "border-left": "1px solid #666666",
"width": "calc(100% - 2px)"
}, },
"titleStyles": { "titleStyles": {
"height": "28px", "height": "28px",
......
...@@ -235,7 +235,8 @@ ...@@ -235,7 +235,8 @@
"datatable": { "datatable": {
"styles": {}, "styles": {},
"tableStyles": { "tableStyles": {
"border": "1px solid #cccccc" "border": "1px solid #cccccc",
"width": "calc(100% - 2px)"
}, },
"titleStyles": { "titleStyles": {
"height": "28px", "height": "28px",
......
...@@ -308,7 +308,8 @@ ...@@ -308,7 +308,8 @@
"datatable": { "datatable": {
"styles": {}, "styles": {},
"tableStyles": { "tableStyles": {
"border": "1px solid #DCDFE6" "border": "1px solid #DCDFE6",
"width": "calc(100% - 2px)"
}, },
"titleStyles": { "titleStyles": {
"height": "28px", "height": "28px",
......
...@@ -283,7 +283,8 @@ ...@@ -283,7 +283,8 @@
"datatable": { "datatable": {
"styles": {}, "styles": {},
"tableStyles": { "tableStyles": {
"border": "1px solid #cccccc" "border": "1px solid #cccccc",
"width": "calc(100% - 2px)"
}, },
"titleStyles": { "titleStyles": {
"height": "28px", "height": "28px",
......
...@@ -291,7 +291,8 @@ ...@@ -291,7 +291,8 @@
"datatable": { "datatable": {
"styles": {}, "styles": {},
"tableStyles": { "tableStyles": {
"border": "1px solid #cccccc" "border": "1px solid #cccccc",
"width": "calc(100% - 2px)"
}, },
"titleStyles": { "titleStyles": {
"height": "28px", "height": "28px",
......
...@@ -290,7 +290,8 @@ ...@@ -290,7 +290,8 @@
"styles": {}, "styles": {},
"tableStyles": { "tableStyles": {
"border-top": "1px solid #666666", "border-top": "1px solid #666666",
"border-left": "1px solid #666666" "border-left": "1px solid #666666",
"width": "calc(100% - 2px)"
}, },
"titleStyles": { "titleStyles": {
"height": "28px", "height": "28px",
......
...@@ -307,7 +307,8 @@ ...@@ -307,7 +307,8 @@
}, },
"tableStyles": { "tableStyles": {
"border-left": "1px solid #fd1113", "border-left": "1px solid #fd1113",
"border-top": "1px solid #fd1113" "border-top": "1px solid #fd1113",
"width": "calc(100% - 2px)"
}, },
"titleStyles": { "titleStyles": {
"height": "28px", "height": "28px",
......
...@@ -284,7 +284,8 @@ ...@@ -284,7 +284,8 @@
"datatable": { "datatable": {
"styles": {}, "styles": {},
"tableStyles": { "tableStyles": {
"border": "1px solid #cccccc" "border": "1px solid #cccccc",
"width": "calc(100% - 2px)"
}, },
"titleStyles": { "titleStyles": {
"height": "28px", "height": "28px",
......
...@@ -1999,7 +1999,8 @@ MWF.xApplication.query.ViewDesigner.View.Actionbar = new Class({ ...@@ -1999,7 +1999,8 @@ MWF.xApplication.query.ViewDesigner.View.Actionbar = new Class({
this.toolbarWidget.load(); this.toolbarWidget.load();
this._setEditStyle_custom("hideSystemTools"); this._setEditStyle_custom("hideSystemTools");
}else{ }else{
MWF.getJSON(this.path+"toolbars.json", function(json){ // MWF.getJSON(this.path+"toolbars.json", function(json){
MWF.getJSON(this.getJsonPath(), function(json){
this.json.multiTools = json.map( function (d) { d.system = true; return d; }); this.json.multiTools = json.map( function (d) { d.system = true; return d; });
if (this.json.tools){ if (this.json.tools){
this.json.multiTools = this.json.multiTools.concat( this.json.tools ) this.json.multiTools = this.json.multiTools.concat( this.json.tools )
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册