当鼠标移开ext.toolbar.button与ext.menu.Menu这两块区域时隐藏Menu。
  EXT不熟练,困扰2天了。麻烦各位高人帮帮忙,非常感谢Ext.onReady(function(){
    Ext.QuickTips.init();
    
    var menu = new Ext.menu.Menu({
        id: 'mainMenu',
        style: {
            overflow: 'visible'     // For the Combo popup
        },
        items: [{
                text: 'AAA',           
            },        
            {
                text: 'BBB',
            }
        ]
    });
           var tb = new Ext.Toolbar();
    tb.render('toolbar');    tb.add({
            text:'Button w/ Menu',
            iconCls: 'bmenu',  // <-- icon
            menu: menu  // assign menu by instance
            ,
            listeners : {
                    mouseover : function (obj,e)    {
                        if(!obj.menu.isVisible()){
                                obj.showMenu();
                            }
                    }
            }
        });
    tb.doLayout();
});