[solved] what tag can create "ul" "li" in ADF FACE
404001Feb 17 2008 — edited Feb 18 2008i 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