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
sarvesh001sarvesh001 

How to merge the Html td's dynamically

Hi All,

How to merge the Html td's dynamically based on the if condition in vf page .

Can anyone help me from this.

Thanks,
Sarvesh.
Dushyant SonwarDushyant Sonwar
Use Jquery
http://stackoverflow.com/questions/171027/add-table-row-in-jquery
See this...
 
Vishnu VaishnavVishnu Vaishnav
Hi Sarvesh,

You can use <apex:outputPanel>:

Exp:

<apex:outputPanel rendered="{!  ShowTd == true }">
<td>
<!--Your Code-->
</td>
</apex:outputPanel>

:::======================================================================:::
Qusetion Solved ? then mark as best answer to make helpful to others .....