function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
vjaivjai 

Creating Columns

Hi All,

 

Is there an alternate way to create columns in visual force page apart from using <apex:columns>?

 

Thanks and Regards,

Vijay

 

 

ibtesamibtesam

try using html table?

 

<table>

<tr>

<td>Column1</td><td>Column2</td>

</tr>

</table>

vjaivjai

Thanks ibtesam....It was helpful