Blog / Oracle Application Blog

Append the Data Base value to Tabular Form Read only Column

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


Related blogs