Browse Source

chore: 整理

es6
guy 3 years ago
parent
commit
ac0cd0566c
  1. 2
      src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js
  2. 4
      src/widget/multilayerselecttree/multilayerselecttree.combo.js
  3. 4
      src/widget/multilayersingletree/multilayersingletree.combo.js
  4. 2
      src/widget/multiselect/multiselect.combo.js
  5. 2
      src/widget/multiselect/multiselect.combo.nobar.js
  6. 2
      src/widget/multiselect/multiselect.insert.combo.js
  7. 2
      src/widget/multiselect/multiselect.insert.combo.nobar.js
  8. 2
      src/widget/multitree/multi.tree.combo.js
  9. 2
      src/widget/multitree/multi.tree.insert.combo.js
  10. 2
      src/widget/multitree/multi.tree.list.combo.js
  11. 2
      src/widget/singleselect/singleselect.combo.js
  12. 2
      src/widget/singleselect/singleselect.insert.combo.js

2
src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js

@ -35,7 +35,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
self.trigger = this;
},
items: o.items,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
text: o.text,
defaultText: o.defaultText,
value: o.value,

4
src/widget/multilayerselecttree/multilayerselecttree.combo.js

@ -139,7 +139,7 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
itemsCreator: o.itemsCreator,
valueFormatter: o.valueFormatter,
watermark: o.watermark,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
text: o.text,
value: o.value,
tipType: o.tipType,
@ -247,4 +247,4 @@ BI.MultiLayerSelectTreeCombo.EVENT_FOCUS = "EVENT_FOCUS";
BI.MultiLayerSelectTreeCombo.EVENT_CHANGE = "EVENT_CHANGE";
BI.MultiLayerSelectTreeCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW";
BI.MultiLayerSelectTreeCombo.EVENT_CLICK_ITEM = "EVENT_CLICK_ITEM";
BI.shortcut("bi.multilayer_select_tree_combo", BI.MultiLayerSelectTreeCombo);
BI.shortcut("bi.multilayer_select_tree_combo", BI.MultiLayerSelectTreeCombo);

4
src/widget/multilayersingletree/multilayersingletree.combo.js

@ -142,7 +142,7 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
items: o.items,
itemsCreator: o.itemsCreator,
valueFormatter: o.valueFormatter,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
text: o.text,
value: o.value,
tipType: o.tipType,
@ -247,4 +247,4 @@ BI.MultiLayerSingleTreeCombo.EVENT_BLUR = "EVENT_BLUR";
BI.MultiLayerSingleTreeCombo.EVENT_FOCUS = "EVENT_FOCUS";
BI.MultiLayerSingleTreeCombo.EVENT_CHANGE = "EVENT_CHANGE";
BI.MultiLayerSingleTreeCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW";
BI.shortcut("bi.multilayer_single_tree_combo", BI.MultiLayerSingleTreeCombo);
BI.shortcut("bi.multilayer_single_tree_combo", BI.MultiLayerSingleTreeCombo);

2
src/widget/multiselect/multiselect.combo.js

@ -44,7 +44,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.multi_select_trigger",
allowEdit: o.allowEdit,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
text: o.text,
// adapter: this.popup,
masker: {

2
src/widget/multiselect/multiselect.combo.nobar.js

@ -41,7 +41,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.multi_select_trigger",
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
text: o.text,
// adapter: this.popup,
masker: {

2
src/widget/multiselect/multiselect.insert.combo.js

@ -40,7 +40,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.multi_select_insert_trigger",
allowEdit: o.allowEdit,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
text: o.text,
watermark: o.watermark,
// adapter: this.popup,

2
src/widget/multiselect/multiselect.insert.combo.nobar.js

@ -41,7 +41,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.multi_select_insert_trigger",
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
text: o.text,
// adapter: this.popup,
masker: {

2
src/widget/multitree/multi.tree.combo.js

@ -27,7 +27,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.multi_select_trigger",
allowEdit: o.allowEdit,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
valueFormatter: o.valueFormatter,
text: o.text,
watermark: o.watermark,

2
src/widget/multitree/multi.tree.insert.combo.js

@ -28,7 +28,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.multi_select_trigger",
allowEdit: o.allowEdit,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
valueFormatter: o.valueFormatter,
// adapter: this.popup,
masker: {

2
src/widget/multitree/multi.tree.list.combo.js

@ -30,7 +30,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
allowEdit: o.allowEdit,
text: o.text,
watermark: o.watermark,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
valueFormatter: o.valueFormatter,
// adapter: this.popup,
masker: {

2
src/widget/singleselect/singleselect.combo.js

@ -30,7 +30,7 @@ BI.SingleSelectCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.single_select_trigger",
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
// adapter: this.popup,
allowNoSelect: o.allowNoSelect,
allowEdit: o.allowEdit,

2
src/widget/singleselect/singleselect.insert.combo.js

@ -31,7 +31,7 @@ BI.SingleSelectInsertCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.single_select_trigger",
watermark: o.watermark,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
allowNoSelect: o.allowNoSelect,
allowEdit: o.allowEdit,
// adapter: this.popup,

Loading…
Cancel
Save