Topic: how to close Mif.Menu when you select another tree node ?

Hello,

I've implemented Mif.Menu+Mif.tree  contextual menu.
When I open the menu (with right or left+ctrl click)  and I choose another tree item (on blur current selected node)  the menu is never closed
How to close contextual Mif.Menu when you select another tree node ?

Regards

Re: how to close Mif.Menu when you select another tree node ?

try add

tree.addEvent('select', function(){
    myMenu.hide();
})

Re: how to close Mif.Menu when you select another tree node ?

works only if  I don't use Drag'N Drop

Re: how to close Mif.Menu when you select another tree node ?

can't reproduce, works for me.