[
https://issues.apache.org/jira/browse/FLEX-33592?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Justin Mclean resolved FLEX-33592.
----------------------------------
Resolution: Fixed
Fix Version/s: Apache Flex 4.10.0
Checked into develop branch. Added checks to stop RTE. Also fixed last index
hanging about when changing data providers. Mustella MenuBar tests pass.
> mx.controls.MenuBar#getMenuAt TypeError
> ---------------------------------------
>
> Key: FLEX-33592
> URL: https://issues.apache.org/jira/browse/FLEX-33592
> Project: Apache Flex
> Issue Type: Bug
> Components: mx: Menu Bar
> Affects Versions: Apache Flex 4.9.0
> Reporter: Philip Mair
> Fix For: Apache Flex 4.10.0
>
> Original Estimate: 2h
> Remaining Estimate: 2h
>
> When changing MenuBar dataProvider within click on MenuBar-Item causes a
> RangeError in getMenuAt if the index was greater then new amount of MenuBar
> Items.
> I solved this with following workaround:
> public override function getMenuAt(index:int):Menu
> {
> var menu:Menu = null;
>
> try
> {
> menu = super.getMenuAt(index);
> }
> catch(e: Error)
> {
>
> }
> if(menu == null) //return a fake menu to avoid
> TypeError's
> return new Menu();
> else
> return menu;
> }
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira