You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "Justin Mclean (JIRA)" <ji...@apache.org> on 2013/06/20 14:48:21 UTC

[jira] [Commented] (FLEX-33592) mx.controls.MenuBar#getMenuAt TypeError

    [ https://issues.apache.org/jira/browse/FLEX-33592?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13689199#comment-13689199 ] 

Justin Mclean commented on FLEX-33592:
--------------------------------------

Added check and checked into develop branch.
                
> 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