up vote 0 down vote favorite
share [g+] share [fb]

When updating the data provider for a menu bar component, the state of the menu items fails to update until the user interacts with the menus (rolls the mouse over them, clicks them, etc). For example, a disabled item remains enabled until the user roll the mouse over it. Is there a way to force a menu 'refresh' after modifying the data provider XML?

link|improve this question
Is your data provider declared Bindable? – dirkgently Apr 15 '09 at 18:35
are you using a flex menu bar or an flash actionscript 2.0 MenuBar ? – George Profenza Apr 17 '09 at 23:41
feedback

1 Answer

Just experienced exactly the same thing. For problem to occur, you must've selected something on menu prior to updating dataprovider. this selection index lingers on internal member oldIndex and causes an error in menubar mouseOverHandler. I fixed it by clearing selection after changing dataprovider:

menu.dataProvider = newProvider;

appMenu.selectedIndex = -1;

Good luck

link|improve this answer
feedback

Your Answer

 
or
required, but never shown