R
RudiH
Hi,
How can you hide controls, e.g. labels, text boxes etc, when a form is
loaded.
I've written the function below
function HideControls()
{
document.ApplicationForm.txtFrom.style.visibility='hidden';
document.ApplicationForm.txtTo.style.visibility='hidden';
}
and call this function within the <form onload="HideControls()"; ...> tag.
But it doesn't seem to work as expected.
Can somebody help?
Thanks
--
How can you hide controls, e.g. labels, text boxes etc, when a form is
loaded.
I've written the function below
function HideControls()
{
document.ApplicationForm.txtFrom.style.visibility='hidden';
document.ApplicationForm.txtTo.style.visibility='hidden';
}
and call this function within the <form onload="HideControls()"; ...> tag.
But it doesn't seem to work as expected.
Can somebody help?
Thanks
--