[ https://issues.apache.org/jira/browse/ADFFACES-432?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Gary Kind updated ADFFACES-432: ------------------------------- Description: A typical entry for a menu item might be: <itemNode id="__medical_itemNode__" label="#{bundle.MEDICAL_NAVBAR}" action="__medical_menu_action__" focusViewId="/medical"/> Note the "dot" notation for the label's EL expression. This is parsed correctly. However another legal entry might be: <itemNode id="__medical_itemNode__" label='#{bundle["MEDICAL_NAVBAR"]}' action="__medical_menu_action__" focusViewId="/medical"/> Note the "bracket" notation for the label's EL expression. The XMLMenuModel does not parse this correctly and returns null instead of the correct value. was: A typical entry for a menu item might be: <itemNode id="__medical_itemNode__" label="#{bundle.MEDICAL_NAVBAR}" action="__medical_adfMenu_action__" focusViewId="/medical"/> Note the "dot" notation for the label's EL expression. This is parsed correctly. However another legal entry might be: <itemNode id="__medical_itemNode__" label='#{bundle["MEDICAL_NAVBAR"]}' action="__medical_adfMenu_action__" focusViewId="/medical"/> Note the "bracket" notation for the label's EL expression. The XMLMenuModel does not parse this correctly and returns null instead of the correct value. > XMLMenuModel does not correctly parse Resource Bundle EL expressions for menu > item labels. > ------------------------------------------------------------------------------------------ > > Key: ADFFACES-432 > URL: https://issues.apache.org/jira/browse/ADFFACES-432 > Project: MyFaces ADF-Faces > Issue Type: Bug > Reporter: Gary Kind > Attachments: faces-1_2-070201.patch > > > A typical entry for a menu item might be: > <itemNode id="__medical_itemNode__" label="#{bundle.MEDICAL_NAVBAR}" > action="__medical_menu_action__" focusViewId="/medical"/> > Note the "dot" notation for the label's EL expression. This is parsed > correctly. However another legal entry might be: > <itemNode id="__medical_itemNode__" label='#{bundle["MEDICAL_NAVBAR"]}' > action="__medical_menu_action__" focusViewId="/medical"/> > Note the "bracket" notation for the label's EL expression. The XMLMenuModel > does not parse this correctly and returns null instead of the correct value. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.