PDA

View Full Version : View mouseout event?



djMax
30 Aug 2007, 6:04 PM
What's the "proper" way to catch mouseout events on a View? I want to fix ComboBox so that when your mouse exits the panel nothing is selected.

Animal
30 Aug 2007, 11:37 PM
myView.getEl().on("mouseout", function(){});


?