Skip to content

Instantly share code, notes, and snippets.

@rangalo
Created November 3, 2015 12:03
Show Gist options
  • Save rangalo/870f7ef8f43384bb89cb to your computer and use it in GitHub Desktop.
Save rangalo/870f7ef8f43384bb89cb to your computer and use it in GitHub Desktop.
pf radioButton rendering
<table id="companyInformationForm:companySize" class="inputWrap radioTable">
<tr>
<td>
<input type="radio" name="companyInformationForm:companySize" id="companyInformationForm:companySize:0" value="&lt;50" /><label for="companyInformationForm:companySize:0"> &lt;50</label></td>
</tr>
<tr>
<td>
<input type="radio" name="companyInformationForm:companySize" id="companyInformationForm:companySize:1" value="51-100" /><label for="companyInformationForm:companySize:1"> 51-100</label></td>
</tr>
<tr>
<td>
<input type="radio" name="companyInformationForm:companySize" id="companyInformationForm:companySize:2" value="101-500" /><label for="companyInformationForm:companySize:2"> 101-500</label></td>
</tr>
<tr>
<td>
<input type="radio" name="companyInformationForm:companySize" id="companyInformationForm:companySize:3" value="501-1000" /><label for="companyInformationForm:companySize:3"> 501-1000</label></td>
</tr>
<tr>
<td>
<input type="radio" name="companyInformationForm:companySize" id="companyInformationForm:companySize:4" value="1001-2000" /><label for="companyInformationForm:companySize:4"> 1001-2000</label></td>
</tr>
<tr>
<td>
<input type="radio" name="companyInformationForm:companySize" id="companyInformationForm:companySize:5" value="2001-5000" /><label for="companyInformationForm:companySize:5"> 2001-5000</label></td>
</tr>
<tr>
<td>
<input type="radio" name="companyInformationForm:companySize" id="companyInformationForm:companySize:6" value="5001-10000" /><label for="companyInformationForm:companySize:6"> 5001-10000</label></td>
</tr>
<tr>
<td>
<input type="radio" name="companyInformationForm:companySize" id="companyInformationForm:companySize:7" value="&gt;10000" /><label for="companyInformationForm:companySize:7"> &gt;10000</label></td>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment