Friday, April 16, 2010

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';

No comments:

Post a Comment