Advertisement
Advertisement
| 04.16.2008 at 02:37AM PDT, ID: 23326417 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: |
The java code is :
<table border="0" cellspacing="1" width="100%" cellpadding="0" class="contextRow">
<s:checkboxlist cssClass="contextFieldData" name="delValueList" list="descList" listKey="tag_value_id" listValue="valueName" />
</table>
The rendered HTML code is:
<table border="0" cellspacing="1" width="100%" cellpadding="0" class="contextRow">
<tr>
<td class="tdLabel"></td>
<td>
<input type="checkbox" name="delValueList" value="1311" id="delValueList-1"/>
<label for="delValueList-1" class="checkboxLabel">16AP</label>
<input type="checkbox" name="delValueList" value="294" id="delValueList-2"/>
<label for="delValueList-2" class="checkboxLabel">ADRR</label>
<input type="checkbox" name="delValueList" value="1312" id="delValueList-3"/>
<label for="delValueList-3" class="checkboxLabel">AP16</label>
<input type="checkbox" name="delValueList" value="296" id="delValueList-4"/>
<label for="delValueList-4" class="checkboxLabel">BAT</label>
<input type="checkbox" name="delValueList" value="295" id="delValueList-5"/>
<label for="delValueList-5" class="checkboxLabel">CARP</label>
<input type="checkbox" name="delValueList" value="248" id="delValueList-6"/>
<label for="delValueList-6" class="checkboxLabel">EXER</label>
</td>
</tr>
</table>
|