anyway to hide Telnet window in HTML? (General questions)
Is there a way to hide the telnet windowin HTML.
Seems like it should be a property in TelnetDLX but I dont see it.
Re: anyway to hide Telnet window in HTML?
Hi,
I believe I already responded to you on our ticketing system. Anyway, here's a copy of my response:
This can't be done directly by wodTelnetDLX, but has to be done from your code. However, you san use JavaScript for this. You can simply implement something like this:
When implementing body tags do this:
-------------------------------------------------------------
<body onLoad= Page_Load() >
-------------------------------------------------------------
and implement Page_Load function in JavaScript:
-------------------------------------------------------------
<script>
function Page_Load()
{
var control = document.getElementById( telnetdlx );
control.style.visibility = hidden ;
}
</script>
-------------------------------------------------------------
Regards,
Damba