Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 14th, 2012  |  syntax: None  |  size: 1.05 KB  |  hits: 73  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <h:form>
  2.                 <rich:panel style="width:500px">
  3.                         <h:selectOneRadio value="#{cityTabBean.city}"
  4.                                 valueChangeListener="#{cityTabBean.changeCity}">
  5.                                 <f:selectItem itemLabel="New York" itemValue="nyc" />
  6.                                 <f:selectItem itemLabel="San Francisco" itemValue="sf" />
  7.                                 <f:selectItem itemLabel="Los Angeles" itemValue="la" />
  8.                                 <a4j:ajax event="change" render="cityTabs @this" execute="@this"/>
  9.                         </h:selectOneRadio>
  10.                 </rich:panel>
  11.                 <rich:panel style="width:500px" header="rich:tabPanel and rich:tab">
  12.                         <rich:tabPanel id="cityTabs" switchType="client"
  13.                                 activeItem="#{cityTabBean.selectedTab}">
  14.                                 <rich:tab header="New York City" name="nyc">
  15.                   Statue of Liberty
  16.               </rich:tab>
  17.                                 <rich:tab header="San Francisco" name="sf">
  18.                   Golden Gate Bridge
  19.               </rich:tab>
  20.                                 <rich:tab header="Los Angeles" name="la">
  21.                   Hollywood
  22.               </rich:tab>
  23.                         </rich:tabPanel>
  24.                 </rich:panel>
  25.         </h:form>
  26.         <a4j:outputPanel ajaxRendered="true">
  27.                 <h:messages />
  28.         </a4j:outputPanel>