forked from fanruan/fineui
windy
7 years ago
5 changed files with 313 additions and 12 deletions
File diff suppressed because one or more lines are too long
@ -0,0 +1,76 @@ |
|||||||
|
/** |
||||||
|
* 文字trigger |
||||||
|
* |
||||||
|
* Created by GUY on 2015/9/15. |
||||||
|
* @class BI.IconTextTrigger |
||||||
|
* @extends BI.Trigger |
||||||
|
*/ |
||||||
|
BI.IconTextTrigger = BI.inherit(BI.Trigger, { |
||||||
|
_const: { |
||||||
|
hgap: 4, |
||||||
|
triggerWidth: 30 |
||||||
|
}, |
||||||
|
|
||||||
|
_defaultConfig: function () { |
||||||
|
var conf = BI.IconTextTrigger.superclass._defaultConfig.apply(this, arguments); |
||||||
|
return BI.extend(conf, { |
||||||
|
baseCls: (conf.baseCls || "") + " bi-text-trigger", |
||||||
|
height: 30 |
||||||
|
}); |
||||||
|
}, |
||||||
|
|
||||||
|
_init: function () { |
||||||
|
BI.IconTextTrigger.superclass._init.apply(this, arguments); |
||||||
|
var self = this, o = this.options, c = this._const; |
||||||
|
this.text = BI.createWidget({ |
||||||
|
type: "bi.label", |
||||||
|
textAlign: "left", |
||||||
|
height: o.height, |
||||||
|
text: o.text, |
||||||
|
hgap: c.hgap |
||||||
|
}); |
||||||
|
this.trigerButton = BI.createWidget({ |
||||||
|
type: "bi.trigger_icon_button", |
||||||
|
cls: "bi-border-left", |
||||||
|
width: c.triggerWidth |
||||||
|
}); |
||||||
|
|
||||||
|
BI.createWidget({ |
||||||
|
element: this, |
||||||
|
type: 'bi.htape', |
||||||
|
items: [{ |
||||||
|
el: { |
||||||
|
type: "bi.icon_change_button", |
||||||
|
cls: "icon-combo-trigger-icon " + o.iconClass, |
||||||
|
ref: function (_ref) { |
||||||
|
self.icon = _ref; |
||||||
|
}, |
||||||
|
disableSelected: true |
||||||
|
}, |
||||||
|
width: 24 |
||||||
|
}, |
||||||
|
{ |
||||||
|
el: this.text |
||||||
|
}, { |
||||||
|
el: this.trigerButton, |
||||||
|
width: c.triggerWidth |
||||||
|
} |
||||||
|
] |
||||||
|
}); |
||||||
|
}, |
||||||
|
|
||||||
|
setValue: function (value) { |
||||||
|
this.text.setValue(value); |
||||||
|
this.text.setTitle(value); |
||||||
|
}, |
||||||
|
|
||||||
|
setIcon: function (iconCls) { |
||||||
|
this.icon.setIcon(iconCls); |
||||||
|
}, |
||||||
|
|
||||||
|
setText: function (text) { |
||||||
|
this.text.setText(text); |
||||||
|
this.text.setTitle(text); |
||||||
|
} |
||||||
|
}); |
||||||
|
BI.shortcut("bi.icon_text_trigger", BI.IconTextTrigger); |
Loading…
Reference in new issue