Browse Source

文本列表存在相同问题;不限死editor的高度

es6
Zhenfei.Li 6 years ago
parent
commit
856b141340
  1. 10
      dist/bundle.ie.js
  2. 10
      dist/bundle.ie.min.js
  3. 10
      dist/bundle.js
  4. 18
      dist/bundle.min.js
  5. 10
      dist/fineui.ie.js
  6. 10
      dist/fineui.ie.min.js
  7. 10
      dist/fineui.js
  8. 18
      dist/fineui.min.js
  9. 10
      dist/fineui_without_jquery_polyfill.js
  10. 2
      dist/utils.min.js
  11. 10
      dist/widget.js
  12. 5
      src/widget/multiselectlist/multiselectlist.js
  13. 5
      src/widget/multiselecttree/multiselecttree.js

10
dist/bundle.ie.js vendored

@ -71245,6 +71245,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
height: 24,
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
});
@ -71383,7 +71384,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -71394,7 +71395,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.height,
bottom: 0,
left: 0,
right: 0
@ -71589,6 +71590,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectTree.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-tree",
height: 24,
itemsCreator: BI.emptyFn
});
},
@ -71679,7 +71681,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcher,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -71690,7 +71692,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 24,
top: o.height,
bottom: 0,
left: 0,
right: 0

10
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/bundle.js vendored

@ -71649,6 +71649,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
height: 24,
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
});
@ -71787,7 +71788,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -71798,7 +71799,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.height,
bottom: 0,
left: 0,
right: 0
@ -71993,6 +71994,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectTree.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-tree",
height: 24,
itemsCreator: BI.emptyFn
});
},
@ -72083,7 +72085,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcher,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -72094,7 +72096,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 24,
top: o.height,
bottom: 0,
left: 0,
right: 0

18
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/fineui.ie.js vendored

@ -71490,6 +71490,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
height: 24,
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
});
@ -71628,7 +71629,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -71639,7 +71640,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.height,
bottom: 0,
left: 0,
right: 0
@ -71834,6 +71835,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectTree.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-tree",
height: 24,
itemsCreator: BI.emptyFn
});
},
@ -71924,7 +71926,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcher,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -71935,7 +71937,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 24,
top: o.height,
bottom: 0,
left: 0,
right: 0

10
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/fineui.js vendored

@ -71894,6 +71894,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
height: 24,
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
});
@ -72032,7 +72033,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -72043,7 +72044,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.height,
bottom: 0,
left: 0,
right: 0
@ -72238,6 +72239,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectTree.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-tree",
height: 24,
itemsCreator: BI.emptyFn
});
},
@ -72328,7 +72330,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcher,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -72339,7 +72341,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 24,
top: o.height,
bottom: 0,
left: 0,
right: 0

18
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/fineui_without_jquery_polyfill.js vendored

@ -54705,6 +54705,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
height: 24,
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
});
@ -54843,7 +54844,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -54854,7 +54855,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.height,
bottom: 0,
left: 0,
right: 0
@ -55049,6 +55050,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectTree.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-tree",
height: 24,
itemsCreator: BI.emptyFn
});
},
@ -55139,7 +55141,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcher,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -55150,7 +55152,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 24,
top: o.height,
bottom: 0,
left: 0,
right: 0

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/widget.js vendored

@ -12186,6 +12186,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
height: 24,
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
});
@ -12324,7 +12325,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -12335,7 +12336,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.height,
bottom: 0,
left: 0,
right: 0
@ -12530,6 +12531,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectTree.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-tree",
height: 24,
itemsCreator: BI.emptyFn
});
},
@ -12620,7 +12622,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcher,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -12631,7 +12633,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 24,
top: o.height,
bottom: 0,
left: 0,
right: 0

5
src/widget/multiselectlist/multiselectlist.js

@ -5,6 +5,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
height: 24,
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
});
@ -143,7 +144,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -154,7 +155,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.height,
bottom: 0,
left: 0,
right: 0

5
src/widget/multiselecttree/multiselecttree.js

@ -5,6 +5,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
_defaultConfig: function () {
return BI.extend(BI.MultiSelectTree.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-tree",
height: 24,
itemsCreator: BI.emptyFn
});
},
@ -95,7 +96,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcher,
height: 24
height: o.height
}, {
el: this.adapter,
height: "fill"
@ -106,7 +107,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 24,
top: o.height,
bottom: 0,
left: 0,
right: 0

Loading…
Cancel
Save