Browse Source

BI-37529 横纵向滚动条都由容器负责

es6
windy 6 years ago
parent
commit
d9503d4d0f
  1. 10
      dist/bundle.ie.js
  2. 4
      dist/bundle.ie.min.js
  3. 10
      dist/bundle.js
  4. 8
      dist/bundle.min.js
  5. 10
      dist/fineui.ie.js
  6. 4
      dist/fineui.ie.min.js
  7. 10
      dist/fineui.js
  8. 8
      dist/fineui.min.js
  9. 10
      dist/fineui_without_jquery_polyfill.js
  10. 2
      dist/utils.min.js
  11. 10
      dist/widget.js
  12. 1
      src/widget/multilayerselecttree/multilayerselecttree.leveltree.js
  13. 1
      src/widget/multilayersingletree/multilayersingletree.leveltree.js

10
dist/bundle.ie.js vendored

@ -65808,7 +65808,6 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
})
},
@ -66502,7 +66501,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
});
},
@ -73259,12 +73257,8 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function () {
return this.editor.setTitle();
},
setEnable: function () {
return this.editor.setEnable();
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/bundle.js vendored

@ -66212,7 +66212,6 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
})
},
@ -66906,7 +66905,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
});
},
@ -73663,12 +73661,8 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function () {
return this.editor.setTitle();
},
setEnable: function () {
return this.editor.setEnable();
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/fineui.ie.js vendored

@ -66053,7 +66053,6 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
})
},
@ -66747,7 +66746,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
});
},
@ -73504,12 +73502,8 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function () {
return this.editor.setTitle();
},
setEnable: function () {
return this.editor.setEnable();
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/fineui.js vendored

@ -66457,7 +66457,6 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
})
},
@ -67151,7 +67150,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
});
},
@ -73908,12 +73906,8 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function () {
return this.editor.setTitle();
},
setEnable: function () {
return this.editor.setEnable();
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {

8
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/fineui_without_jquery_polyfill.js vendored

@ -49271,7 +49271,6 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
})
},
@ -49965,7 +49964,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
});
},
@ -56722,12 +56720,8 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function () {
return this.editor.setTitle();
},
setEnable: function () {
return this.editor.setEnable();
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/widget.js vendored

@ -6787,7 +6787,6 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
})
},
@ -7481,7 +7480,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
});
},
@ -14238,12 +14236,8 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function () {
return this.editor.setTitle();
},
setEnable: function () {
return this.editor.setEnable();
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {

1
src/widget/multilayerselecttree/multilayerselecttree.leveltree.js

@ -103,7 +103,6 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
})
},

1
src/widget/multilayersingletree/multilayersingletree.leveltree.js

@ -106,7 +106,6 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.adaptive",
element: this,
scrollable: true,
items: [this.tree]
});
},

Loading…
Cancel
Save