Tuesday 14 October 2014

Hide the Report Column based on User Condition

 Get the interactive repot table id
 Example : var apexform = $x{interactive report tableid};

 Mention the rows and column
 Example: var hidecell1= apexform.rows[4].cells[0];

 Script used to hide the particular cell
 Example: hidecell1.style.display='none';

1 comment: