我正在使用JSF 2和h:selectOneRadio组件呈现表tbody,tr,td中的所有输入...
有没有办法生成div而不是这个表行和列,以便为这些项目使用以前设计的html和css页面?
示例:
我有这个项目的结构:
<div class="form-row">
<label for="mob-100" class="fancyradio">
<input type="radio" name="config-mob" id="movil-100" class="radio01 hide-item">
</input>
<span>My item</span>
</label>
</div>
组件正在产生这个:
<table>
<tbody>
<tr>
<td>
<input type="radio" name="j_idt27" id="j_idt27:0" value="12">
<label for="j_idt27:0" class="active"> My item</label>
</td>
</tr>
.
.
.
</tbody>
</table>
我需要将第一个结构调整为生成的selectoneradio html。
提前致谢。