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 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. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.