/** * 简单的复选下拉树控件, 适用于数据量少的情况, 可以自增值 * * Created by GUY on 2015/10/29. * @class BI.ListTreeValueChooserInsertCombo * @extends BI.Widget */ BI.ListTreeValueChooserInsertCombo = BI.inherit(BI.AbstractListTreeValueChooser, { _defaultConfig: function () { return BI.extend(BI.ListTreeValueChooserInsertCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-list-tree-value-chooser-insert-combo", width: 200, height: 24, items: null, itemsCreator: BI.emptyFn }); }, _init: function () { BI.ListTreeValueChooserInsertCombo.superclass._init.apply(this, arguments); var self = this, o = this.options; if (BI.isNotNull(o.items)) { this._initData(o.items); } this.combo = BI.createWidget({ type: "bi.multi_tree_list_combo", element: this, itemsCreator: BI.bind(this._itemsCreator, this), valueFormatter: BI.bind(this._valueFormatter, this), width: o.width, height: o.height, listeners: [{ eventName: BI.MultiTreeListCombo.EVENT_FOCUS, action: function () { self.fireEvent(BI.ListTreeValueChooserInsertCombo.EVENT_FOCUS); } }, { eventName: BI.MultiTreeListCombo.EVENT_BLUR, action: function () { self.fireEvent(BI.ListTreeValueChooserInsertCombo.EVENT_BLUR); } }, { eventName: BI.MultiTreeListCombo.EVENT_STOP, action: function () { self.fireEvent(BI.ListTreeValueChooserInsertCombo.EVENT_STOP); } }, { eventName: BI.MultiTreeListCombo.EVENT_CLICK_ITEM, action: function () { self.fireEvent(BI.ListTreeValueChooserInsertCombo.EVENT_CLICK_ITEM); } }, { eventName: BI.MultiTreeListCombo.EVENT_SEARCHING, action: function () { self.fireEvent(BI.ListTreeValueChooserInsertCombo.EVENT_SEARCHING); } }, { eventName: BI.MultiTreeListCombo.EVENT_CONFIRM, action: function () { self.fireEvent(BI.ListTreeValueChooserInsertCombo.EVENT_CONFIRM); } }] }); }, setValue: function (v) { this.combo.setValue(v); }, getValue: function () { return this.combo.getValue(); }, populate: function (items) { this._initData(items); this.combo.populate.apply(this.combo, arguments); } }); BI.ListTreeValueChooserInsertCombo.EVENT_FOCUS = "EVENT_FOCUS"; BI.ListTreeValueChooserInsertCombo.EVENT_BLUR = "EVENT_BLUR"; BI.ListTreeValueChooserInsertCombo.EVENT_STOP = "EVENT_STOP"; BI.ListTreeValueChooserInsertCombo.EVENT_CLICK_ITEM = "EVENT_CLICK_ITEM"; BI.ListTreeValueChooserInsertCombo.EVENT_SEARCHING = "EVENT_SEARCHING"; BI.ListTreeValueChooserInsertCombo.EVENT_CONFIRM = "EVENT_CONFIRM"; BI.shortcut("bi.list_tree_value_chooser_insert_combo", BI.ListTreeValueChooserInsertCombo);