<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
<f:view>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<title>t:radio example</title>
<style type="text/css">
<!--
body{
background-color:#fff2f2;
margin-top:30;
}
-->
</style>
</head>
<body >
<h:form><center>
<t:selectOneRadio id="sor" value="SI" layout="spread"
border="1"
style="font-weight:bold;
background-color:#99CCFF;">
<f:selectItem id="si1" itemLabel="Samsung" itemValue="sa" />
<f:selectItem id="si2" itemLabel="Link" itemValue="lo" />
<f:selectItem id="si3" itemLabel="Logitech" itemValue="lg" />
<f:selectItem id="si4" itemLabel="BenQ" itemValue="bq" />
</t:selectOneRadio>
<t:panelGrid columns="1" width="20%" style="color:green;"
cellpadding="0" cellspacing="5">
<t:panelGroup>
<t:radio for="sor" index="0"></t:radio>
<t:inputText />
</t:panelGroup>
<f:verbatim><hr></f:verbatim>
<t:panelGroup>
<t:radio for="sor" index="1"></t:radio>
<t:inputText />
</t:panelGroup>
<f:verbatim><hr></f:verbatim>
<t:panelGroup>
<t:radio for="sor" index="2"></t:radio>
<t:inputText />
</t:panelGroup>
<f:verbatim><hr></f:verbatim>
<t:panelGroup>
<t:radio for="sor" index="3"></t:radio>
<t:inputText />
</t:panelGroup>
</t:panelGrid>
</center></h:form>
</body>
</html>
</f:view> |