tonyperth
asked on
TS Web Access options button is refreshing the screen possible jscript issue
Hello,
I am using TS Web Access installed on a 2008 Terminal Server R1 and the options button is not working correctly, and i think the problem is in the HTMl or jscript code attached. What is happening is when you click on the "Options" button the options become visable as they should, but after about a second the page refreshes and they are re-hidden.
Any help would be greatly appreciated.
cheers,
Tony
I am using TS Web Access installed on a 2008 Terminal Server R1 and the options button is not working correctly, and i think the problem is in the HTMl or jscript code attached. What is happening is when you click on the "Options" button the options become visable as they should, but after about a second the page refreshes and they are re-hidden.
Any help would be greatly appreciated.
cheers,
Tony
function hideshowOptions(){
if (document.getElementById("opt_panel").style.visibility == "hidden") {
document.getElementById("opt_panel").style.visibility = "visible";
document.getElementById("ButtonOptions").innerHTML = "<u>O</u>ptions" +" <<";
}
else {
document.getElementById("opt_panel").style.visibility = "hidden";
document.getElementById("ButtonOptions").innerHTML = "<u>O</u>ptions" +" >>";
}
}
var myExp = new Array(7);
var myAr
myAr = new Array
TSWebAccess.png
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.