V
Valli
Hi,
I am adding records to htmltable using javascript coding. I want to
make a single column invisible in that html table.
Can anyone help me in this?
My javascript code to add a new row in html table follows below:
var tbody =
document.getElementById('tblorederlist').getElementsByTagName('tbody')[0];
var row = document.createElement('TR');
var td1 = document.createElement('TD');
var td2 = document.createElement('TD');
var td3 = document.createElement('TD');
td1.innerHTML=orderorpositiontype;
td2.innerHTML =buysell;
td3.innerHTML = buyselltype;
row.appendChild(td1);
row.appendChild(td2);
row.appendChild(td3);
tbody.appendChild(row);
My target is to make 2column invisible..What is the javascript coding
require for this?
I am adding records to htmltable using javascript coding. I want to
make a single column invisible in that html table.
Can anyone help me in this?
My javascript code to add a new row in html table follows below:
var tbody =
document.getElementById('tblorederlist').getElementsByTagName('tbody')[0];
var row = document.createElement('TR');
var td1 = document.createElement('TD');
var td2 = document.createElement('TD');
var td3 = document.createElement('TD');
td1.innerHTML=orderorpositiontype;
td2.innerHTML =buysell;
td3.innerHTML = buyselltype;
row.appendChild(td1);
row.appendChild(td2);
row.appendChild(td3);
tbody.appendChild(row);
My target is to make 2column invisible..What is the javascript coding
require for this?