如何存储丰富的状态:手风琴项目?

时间:2012-08-16 11:29:50

标签: jsf-2 richfaces

我想使用丰富的手风琴来制作像http://showcase.richfaces.org/这样的导航页面。我希望用户能够在用户点击链接时通过exadel保存富有的手风琴状态。我怎样才能实现这种行为?使用Richfaces 4。

<rich:accordion switchType="ajax">
                            <rich:accordionItem header="Daily Sales" >                           
                                <h:outputLink value="../GKPI/R.xhtml">1. R</h:outputLink> <br></br>                                                              
                            </rich:accordionItem>

                            <rich:accordionItem  header="Weekly Sales" > 
                                <h:outputLink value="../GKPIW/CR.xhtml">1. CR</h:outputLink> <br></br>                              
                            </rich:accordionItem>
  </rich:accordion>

1 个答案:

答案 0 :(得分:0)

解决方案是添加activeItem =“#{bean.activeItem}”,其中activeItem是托管bean中的字符串变量。

<rich:accordion switchType="ajax" activeItem="#{kpilist.activeItem}" >
</rich:accordion>