colspan and rowspan problem?
843842Sep 16 2004 — edited Sep 17 2004is it the panelGrid or panelGroup which can function similiar as colspan or rowspan in <td> html tags?
for example:
in html
<table>
<tr><td>username</td><td><input type="text" name="username"></td></tr>
<tr><td>password</td><td><input type="password" name="password"></td></tr>
<tr><td colspan="2"><input type="submit" value="login"></td></tr>
</table>
Is it JSF can do so?
I have some report which must use colspan and rowspan to combine some columns and rows to look nickly. Please help me. Thanks.