Ask a Question related to ASP.NET General, Design and Development.
-
Sunil Menon #1
Send an iFrame to back
Dear All,
I am using a menu control that is inside an iFrame...the parent
page contains around three iFrames...after rendering the menu
control...on click of the menu..the sub menus appear behind the
iFrame...how do I get the sub menus in front....
The menus are plain HTML tags...
Please help...
TALIA
Many Regards
Sunil
Sunil Menon Guest
-
send data and then alter it after send
when attaching data using send, to a published video...is it then possible to alter this data? ie: if a title for the movie was attached using... -
How to restrict the user to go back ones the user haslogged out. Or, if he goes back, how to generate custom errorfor
:music; How to restrict the user to go back ones the user has logged out. Or, if he goes back, how to generate custom error for Page Expire ? :music; -
Securing response send back by Web Service
I am looking at samples that come along with WSE 2.0 but I cannot find any example that shows how to secure the response that is send by the... -
Move to Front/Send to Back Fields
I'm currently using Acrobat Professional v. 6.0 to create fillable PDFs. In this particular PDF, I want to put a button on top of read-only fields.... -
Does Socket.send send all bytes?
Does ruby's Socket.send send all bytes at once, or does one have to keep count of bytes sent and repeat sending until all are sent (a la C etc)? -
Vidar Petursson #2
Re: Send an iFrame to back
Hi
Depends on the browser... Did you try z-Index for your menu?
[url]http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/zindex.asp[/url]
Or createPopup for IE5.5+
[url]http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/createpopup.asp[/url]
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Sunil Menon" <sunil@itb-india.com> wrote in message
news:de18ec83.0307090508.1231a169@posting.google.c om...> Dear All,
> I am using a menu control that is inside an iFrame...the parent
> page contains around three iFrames...after rendering the menu
> control...on click of the menu..the sub menus appear behind the
> iFrame...how do I get the sub menus in front....
>
> The menus are plain HTML tags...
>
> Please help...
>
> TALIA
> Many Regards
> Sunil
Vidar Petursson Guest
-
Sunil Menon #3
Re: Send an iFrame to back
Dear Vidar,
Thanks for the quick reply...we tried using the z-index but the
z-index applies only to the iFrame...and since the Page contains the
iFrames...the menus still appear behind one of the iFrames...I cannot
use createpopup as I need to send menu clicks to the page that is loaded
inside a iframe...the clicks will be client side clicks or server side
clicks...
If u have any idea...it will be of great help...
Thanks & Regards
Sunil
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Sunil Menon Guest
-
Vidar Petursson #4
Re: Send an iFrame to back
Hi
So the menus are located in the page hosting the iframe(s)?
iframe is window-less as of IE5.5 and should work fine with z-index
Basic example:
<HTML><HEAD>
<SCRIPT>
function toggle(sElID){
if(!document.getElementById ) return;
var e = document.getElementById(sElID);
if(e!=null) e.style.display = ( e.style.display == "none" ) ? "block" :
"none";
}
</SCRIPT>
</head>
<BODY>
<div onmouseover="toggle('myDiv')" onmouseout="toggle('myDiv')"
style="cursor:hand">Menu</div>
<DIV id="myDiv" style="Z-INDEX: 2; POSITION:
absolute;background-Color:blue;display:none">
blah<BR>
<BR>blah
</DIV>
<IFRAME src="about:blank" frameBorder=1></IFRAME>
</BODY></HTML>
For browsers that do not support the z-index you can simply hide the iframe
when menu appears
myIframe.style.visibility = ( myIframe.style.visibility == "hidden" ) ?
"visible" : "hidden";
If this does not help send me the URL and I will take a look
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Sunil Menon" <sunil@itb-india.com> wrote in message
news:%23NHFW9hRDHA.2432@TK2MSFTNGP10.phx.gbl...> Dear Vidar,
> Thanks for the quick reply...we tried using the z-index but the
> z-index applies only to the iFrame...and since the Page contains the
> iFrames...the menus still appear behind one of the iFrames...I cannot
> use createpopup as I need to send menu clicks to the page that is loaded
> inside a iframe...the clicks will be client side clicks or server side
> clicks...
>
> If u have any idea...it will be of great help...
>
> Thanks & Regards
> Sunil
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
Vidar Petursson Guest



Reply With Quote

