anyway to hide Telnet window in HTML? - WeOnlyDo Discussion board

anyway to hide Telnet window in HTML? (General questions)

by eagle, Tuesday, September 16, 2008, 22:00 (5911 days ago)

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?

by wodDamir, Tuesday, September 16, 2008, 23:48 (5911 days ago) @ eagle

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