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
Sanket MeghaniSanket Meghani 

Generating table within a table

Is there a way, we can create table within a table column in VisualForce?

 

I am unable to use <apex:repeat> within <apex:column>. I can use <apex:dataTable> within <apex:column>, but in this case it shows the column headers of inner table as well, which I do not want.

 

Any pointers would be helpfull.

 

Thank you,

Sanket

 

 

kiranmutturukiranmutturu
you can use apex:repeat with td and tr simply....and decorate as you want......
Sanket MeghaniSanket Meghani

Thanks Kiran. <apex:repeat> and a combination of <tr>, <td> would do,but I do not want to style/format the table on my own.

 

I found another solution to use <apex:column headerClass="hidden"> to hide headers of inner table within a column.

 

Thank you,

Sanket