<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"xmlns:ui="http://java.sun.com/jsf/facelets"xmlns:f="http://java.sun.com/jsf/core"xmlns:h="http://java.sun.com/jsf/html"xmlns:rich="http://richfaces.org/rich"xmlns:radio="http://richfaces.org/sandbox/radio"><head><title>Radio sample</title></head><bodyclass="rich-container"><ui:includesrc="menu.xhtml"/>Selected option:#{radioBean.selectedOption}<h:form><radio:selectOneRadioid="radio"value="#{radioBean.selectedOption}"><f:selectItemitemValue="January"itemLabel="January"/><f:selectItemitemValue="February"itemLabel="February"/><f:selectItemitemValue="March"itemLabel="March"/></radio:selectOneRadio><radio:radiofor="radio"index="0"/> Some other thing.<radio:radiofor="radio"index="2"/><h:commandButtonvalue="Submit"/></h:form><rich:insertsrc="/index.xhtml"highlight="xhtml"/></body></html>