Kevin,
I don't understand why you want to use t:dataTable. If you chose
dataTable, you will have to define all the possible components on every
row like Simon said. You said you don't want that. So you have to use
something else, like h:panelGrid. Heck, you could even use whatever
logic you have in your legacy program and output raw html surround by
f:verbatims.
e.g.
<f:verbatim>
<table>
<tr>
<td></f:verbatim><h:inputText.../><f:verbatim></td>
</tr>
...
</table>
</f:verbatim>
Regards,
Jeff Bischoff
Kenneth L Kurz & Associates, Inc.
kevin_zhai wrote:
Hi Jeff
Thanks your response,I just want use <t:dataTable> to implement
<http://www.nabble.com/file/3932/pro.jpg > and the html code just like
this:
<table>
<tr>
<td class="SCS_Value_c">
<input type=text name="num" size=5 class="input_text_df" disabled> ULD
</td>
.
.
</tr>
<tr>
<td class="SCS_Value_c">
<input type=radio name="o1" disabled> UCR2U<BR>
<input type=radio name="o1" disabled> UCR2K
</td>
.
.
</tr>
<tr>
<td class="SCS_Value_c">
<input type=text name="num">
</td>
.
.
</tr>
<tr>
<td class="SCS_Value_c">
<input type=checkBox name="num">
</td>
.
.
</tr>
<tr>
.......
</tr>
.
.
</table>
Do you understand me?
best regards