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:jsf2 ace accordion icecore
-
Assignee Priority:P2
-
ICEsoft Forum Reference:
Description
The current ace:accordion component does not allow for any other children other than ace:accordionPane. In order to use the icecore:repeat component (new), the renderer code would need to be modified to allow this type of markup:-
{code}
<ace:accordion id="accordion">
<icecore:repeat id="repeat" value="#{mainMenuBean.subMenuList}" var="SubMenu" >
<ace:accordionPane >
#{SubMenu.name}
</ace:accordionPane>
</icecore:repeat>
</ace:accordion>
{code}
{code}
<ace:accordion id="accordion">
<icecore:repeat id="repeat" value="#{mainMenuBean.subMenuList}" var="SubMenu" >
<ace:accordionPane >
#{SubMenu.name}
</ace:accordionPane>
</icecore:repeat>
</ace:accordion>
{code}
Activity
Field | Original Value | New Value |
---|---|---|
Assignee | Judy Guglielmin [ judy.guglielmin ] |
Fix Version/s | EE-4.2.0.GA [ 13071 ] |
Assignee | Judy Guglielmin [ judy.guglielmin ] | Ken Fyten [ ken.fyten ] |
Assignee | Ken Fyten [ ken.fyten ] | Mircea Toma [ mircea.toma ] |
Assignee Priority | P2 [ 10011 ] |
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #51436 | Wed Apr 19 12:37:07 MDT 2017 | mircea.toma | |
Files Changed | ||||
![]() ![]() ![]() |
Resolution | Fixed [ 1 ] | |
Status | Resolved [ 5 ] | Reopened [ 4 ] |
Status | Reopened [ 4 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #51447 | Mon Apr 24 14:23:10 MDT 2017 | mircea.toma | |
Files Changed | ||||
![]() |
Issue Type | New Feature [ 2 ] | Improvement [ 4 ] |
Summary | modify accordion renderer code to allow for icecore:repeat child | ace:accordion: Add support for icecore:repeat children |
Status | Resolved [ 5 ] | Closed [ 6 ] |
Factored out accordion pane renderer to allow the accordion component to render any type of child. Also modified the AccordionRenderer to render its children at the right location in the markup.