Hi Scooter.
On the RQ10 screen on the LINES tab, there are 5 lines.
You can use the following code to hide each individual line.
document.getElementById("DT0ROW0").style.display = "none"
document.getElementById("DT0ROW1").style.display = "none"
document.getElementById("DT0ROW2").style.display = "none"
document.getElementById("DT0ROW3").style.display = "none"
document.getElementById("DT0ROW4").style.display = "none"
OR
var myRow = 3
document.getElementById("DT0ROW" + myRow).style.display = "none"
Before you execute this statement in your javascript, make sure the LINES tab is selected. Otherwise the code will not work.
Contact me if you have any further questions in the future.
Regards...
|