Change CActiveForm layout

Hi

Is there any way i can change the layout of CActiveform in tabular form(3x3) as we can do using HTML. I want the layout of the create form to be in 3 rows, 3 columns.

Please help…

Please help…any guidance

You have to refactor the code, instead of


<div class="row">

    <...label...>

    <...input...>

</div>

You should use:


<table>

	<tr>

		<td>

			<...label...>

			<...input...>

		</td>

		<td>

			<...label...>

			<...input...>

		</td>

		<td>

			<...label...>

			<...input...>

		</td>

	</tr>

	....

	...

</table>

Thanks Zaccaria, will try this.