I am using the Q2 2009 version of the controls and want to expand a default menu (Item A) when the mouse moves off of a different top level menu item (Item B). Item B does not have any subitems, so OnClientItemClosing and OnClientItemClosed are not available to me.
I assigned a method to OnClientItemBlur, but this is never triggered. Do I need to do something else to enable this?
I have also tried this:
var menu = $find("<%=RadMenu.ClientID %>");
menu.add_itemBlur(OnClientItemBlurHandler);
but my handler is still not called.
I assigned a method to OnClientItemBlur, but this is never triggered. Do I need to do something else to enable this?
I have also tried this:
var menu = $find("<%=RadMenu.ClientID %>");
menu.add_itemBlur(OnClientItemBlurHandler);
but my handler is still not called.