Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

[solved] what tag can create "ul" "li" in ADF FACE

404001Feb 17 2008 — edited Feb 18 2008
i want to make a dynamic menu with CSS and JS in ADF FACE. it will use "ul" and "li" .

if i create a static menu, there is no problem. i can write the following code
< ul>
< li>
<af:commandLink ...../>
</ li>
</ ul>


now i will construct this menu with data from DB, plan to use the method like this,
<af:menuList var="menuSubTab" startDepth="1" value="#{menuModel.model}">
<f:facet name="nodeStamp">
<af:commandMenuItem text="#{menuSubTab.label}"
action="#{menuSubTab.getOutcome}"
rendered="#{menuSubTab.shown and menuSubTab.type=='default'}"
disabled="#{menuSubTab.readOnly}"/>
</f:facet>
</af:menuList>

how can i output < ul> < li> with ADF FACE. pls help me .

thanks

null

Message was edited by:
Guo Qinghua
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 17 2008
Added on Feb 17 2008
2 comments
959 views