Details
-
Type: Improvement
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 4.2
-
Fix Version/s: EE-4.2.0.GA
-
Component/s: ACE-Components
-
Labels:None
-
Environment:ace
-
Assignee Priority:P2
Description
the accordion example in showcase with the page:-
accordionPanel.xhtml
uses
{code}
<h:selectManyCheckbox id="list" layout="pageDirection" selectedClass="selectedCheckBox" >
<f:selectItems value="#{accordionPanelBean.toDoList}"
var="listItem"
itemValue="#{listItem.value}"
itemLabel="#{listItem.key}"/>
<f:ajax execute="@this" render="@all"/>
</h:selectManyCheckbox>
{code}
In order to modify this to ace:checkboxButtons or ace:buttonGroup, the layout attribute would be useful (rather than having to nest the component within another c:forEach tag). Currently, these components only are rended in a horizontal manner (no vertical ability to list the checkbox or radios)
accordionPanel.xhtml
uses
{code}
<h:selectManyCheckbox id="list" layout="pageDirection" selectedClass="selectedCheckBox" >
<f:selectItems value="#{accordionPanelBean.toDoList}"
var="listItem"
itemValue="#{listItem.value}"
itemLabel="#{listItem.key}"/>
<f:ajax execute="@this" render="@all"/>
</h:selectManyCheckbox>
{code}
In order to modify this to ace:checkboxButtons or ace:buttonGroup, the layout attribute would be useful (rather than having to nest the component within another c:forEach tag). Currently, these components only are rended in a horizontal manner (no vertical ability to list the checkbox or radios)
showcase examples that should be updated once this Jira is resolved:-
accordionPanel.xhtml
buttonGroupDataTableColumn.xhtml