You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.0 KiB
76 lines
2.0 KiB
8 years ago
|
/**
|
||
|
* 文字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);
|