Welcome Guest Search | Active Topics | Sign In | Register

Can I Hide Floater Control? Options
jvelezco
Posted: Thursday, March 31, 2011 9:57:55 AM
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
eo_support
Posted: Thursday, March 31, 2011 2:53:41 PM
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!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.