Hi
I dont know if such a control exists but its not hard doing it
simply use a div with display=none and toggle it, In Explorer you
can add visual filters and stuff also
Basic toggle example
<div onclick="toggle('myDiv')">Toggle</div>
<div id="myDiv" style="display:none">
CONTENT HERE
</div>
function toggle(sElementID){
if(document.getElementById)
{
var e = document.getElementById(sElementID);
if(e!=null)
{
e.style.display = ( e.style.display == "none") ? "block" : "none";
}
}
}
More info
http://msdn.microsoft.com/library/de...ence_entry.asp
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Pablo Pecora" <pablo.pecora (AT) itau (DOT) com.ar> wrote
Quote:
xp style control - Drop Down
I'm looking for an Windows XP Style Web Control, like the one I attaching
here...
(The drop down that appears in the Windows Explorer) |