Ext.namespace('Ext.ux');

Ext.ux.LegendaCombo = function(config) {
	Ext.ux.LegendaCombo.superclass.constructor.call(this, config);
};

Ext.extend(Ext.ux.LegendaCombo, Ext.form.ComboBox, {
	
	// シノニム一覧の領域をクリックした場合にもコンボボックスを閉じないようにする。
    collapseIf : function(e){
        if(!e.within(this.wrap) && !e.within(this.list) && !e.within(this.synonymLayer)){
            this.collapse();
        }
    }
});



