Rank: Newbie Groups: Member
Joined: 2/2/2011 Posts: 4
|
Hello,
I would like to know if is It possible to hide a Floater control by using Javascript. I'm trying to use a Floater as a "processing" indicator and would like to hide or show it when process starts or ends, without blocking the control which trigger the process.
Thanks and Regards, Jose
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, Yes. You can use the following code to hide a floater:
Code: JavaScript
//Get the root div for the floater
var div = document.getElementById("<%=Floater1.ClientID%>");
//Hide the div
div.style.display = "none";
Thanks!
|