Friday, April 16, 2010

Append the Data Base value to Tabular Form Read only Column


  • Get the interactive repot table id
Example : var apexform = $x{tableid};
  • Mention the rows and column
Example: var ApexTableId =filter.id; var row= ApexTableId.substring(4,8);
var newCell = ApexTableId.rows[row].cells[4];
newCell.innerHTML = Databasevalue;
  • Ajax(Application Process) used to get the value from Data Base then append into Table cell
output : In our project Product Description is Tabular Form Read only Column













No comments:

Post a Comment