EXTJS4扩展实例:一个调用Ext.picker.Color的颜色选择菜单
运行环境:Extjs4.2.1
运行效果:
调用代码:
Ext.require(['MyExtend.Form.Field.ColorField']); Ext.onReady(function() { var combo = Ext.create('MyExtend.Form.Field.ColorField', { renderTo: Ext.getBody() });
源代码:
Ext.define('MyExtend.Form.Field.ColorField', { extend: 'Ext.form.field.Trigger', alias: 'widget.colorfield', triggerTip: '请选择一个颜色', onTriggerClick: function() { var me = this; if (!me.picker) { me.picker = Ext.create('Ext.picker.Color', { pickerField: this, ownerCt: this, renderTo: Ext.getBody(), floating: true, //hidden: true, focusOnShow: true, style: { backgroundColor: "#fff" }, listeners: { scope: this, select: function(field, value, opts) { me.setValue('#' + value); me.inputEl.applyStyles({ backgroundColor: '#' + value }); me.picker.hide(); } } }); me.picker.alignTo(me.inputEl, 'tl-bl?'); } me.picker.show(); var attached = me.attached || false; me.lastShow = new Date(); if (!attached) { Ext.getDoc().on('mousedown', me.onMouseDown, me, { buffer: Ext.isIE9m ? 10 : undefined }); me.attached = true; } }, onMouseDown: function(e) { var lastShow = this.lastShow, doHide = true; if (Ext.Date.getElapsed(lastShow) > 50 && !e.getTarget('#' + this.picker.id)) { if (Ext.isIE9m && !Ext.getDoc().contains(e.target)) { doHide = false; } if (doHide) { this.picker.hide(); Ext.getDoc().un('mousedown', this.onMouseDown, this); this.attached = false; } } } });