Details
-
Type: Improvement
-
Status: Closed
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 4.0
-
Fix Version/s: 4.1
-
Component/s: ACE-Components
-
Labels:None
-
Environment:Any
-
Assignee Priority:P1
-
Affects:Documentation (User Guide, Ref. Guide, etc.)
Description
The following will not populate any items in the rendered dropdown:
<ace:simpleSelectOneMenu value="#{bean.value}">
<f:selectItems value="#{data.list}"/>
</ace:simpleSelectOneMenu>
If #{data.list} resolves to a non-SelectItem list, such as String[].
However h:selectOneMenu had this functionality added (I think in JSF 2.1 or 2.2).
Similarly using newer f:selectItems features don't seem to work. Such as:
<ace:simpleSelectOneMenu value="#{bean.value}">
<f:selectItems value="#{data.list}" var="loop" itemLabel="Custom #{loop}/>
</ace:simpleSelectOneMenu>
This should show "Custom #{loop}" as the label for each item, but the ace:simpleSelectOneMenu ignores the itemLabel attribute instead.
Ideally ace:simpleSelectOneMenu would function, render, and process dropdowns the same as h:selectOneMenu, just with ICEfaces theming and options applied.
<ace:simpleSelectOneMenu value="#{bean.value}">
<f:selectItems value="#{data.list}"/>
</ace:simpleSelectOneMenu>
If #{data.list} resolves to a non-SelectItem list, such as String[].
However h:selectOneMenu had this functionality added (I think in JSF 2.1 or 2.2).
Similarly using newer f:selectItems features don't seem to work. Such as:
<ace:simpleSelectOneMenu value="#{bean.value}">
<f:selectItems value="#{data.list}" var="loop" itemLabel="Custom #{loop}/>
</ace:simpleSelectOneMenu>
This should show "Custom #{loop}" as the label for each item, but the ace:simpleSelectOneMenu ignores the itemLabel attribute instead.
Ideally ace:simpleSelectOneMenu would function, render, and process dropdowns the same as h:selectOneMenu, just with ICEfaces theming and options applied.
r45036: added complete processing of the f:selectItems tag, in order to support non-SelectItem lists and arrays as well as newer attributes.
Testing notes:
Please create test cases for everything that's not already covered for testing the use of f:selectItems in ace:simpleSelectOneMenu (String array values, custom object and newer attributes). Use this documentation page as reference:
http://docs.oracle.com/javaee/6/javaserverfaces/2.0/docs/pdldocs/facelets/f/selectItems.html