473,395 Members | 1,466 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

dhtml modal window issue in firefox

Hi...

i'm new at dhtml, and i want to use it in help windows (instead of window.open() of javascript)...

i'm done it... but it works only in internet explorer.. in firefox 2 and 3 it opens the dhtml modal window but in the background of my main page... what do i have to correct so it opens up in front as it does in internet explorer?

i'm using c# and ajax... it's an asp.net app...
in masterpage i have this:

Expand|Select|Wrap|Line Numbers
  1. <link rel="stylesheet" href="~/dhtml/windowfiles/dhtmlwindow.css" type="text/css" />
  2. <link rel="stylesheet" href="~/dhtml/modalfiles/modal.css" type="text/css" />
  3. <script type="text/javascript" src="dhtml/windowfiles/dhtmlwindow.js">
  4. </script>
  5. <script type="text/javascript" src="dhtml/modalfiles/modal.js"></script>
  6. <script type="text/javascript">
  7. function openhelp(vPage){
  8.     vWindow=dhtmlmodal.open('Help', 'iframe','' + vPage+ '', 'Info', 'width=900px,height=500px,center=1,resize=0,scrolling=1')
  9. </script>
thanks in advance...
Jul 3 '08 #1
9 5290
acoder
16,027 Expert Mod 8TB
Post the code for the two JavaScript files, or if possible, post a link to a test page. If not and if it's too much code, attach the files to your post instead.
Jul 3 '08 #2
here is the URL where i'm testing dhtml stuff... as you'll see, it won't work correctly in firefox...

http://189.132.59.130/popup/Derechos.aspx

tell me if you need something else...
thanks....
Jul 4 '08 #3
acoder
16,027 Expert Mod 8TB
It's a z-index problem. The DHTML window only has a z-index of 100, while the "MainMenu" and "MainContenido" divs have a z-index of 400 and 300 respectively. Either increase the z-index of the window or decrease the z-index of the divs.
Jul 4 '08 #4
It's a z-index problem. The DHTML window only has a z-index of 100, while the "MainMenu" and "MainContenido" divs have a z-index of 400 and 300 respectively. Either increase the z-index of the window or decrease the z-index of the divs.
how did you know about z-indexes values by just accessing my test website?
i'm new at this and i don't know how to set such z-indexes properties... in modal.css i have this:

Expand|Select|Wrap|Line Numbers
  1. .drag-handle{ /*Overwrite default drag handle bar background color with below*/
  2. background-color: #03277C;
  3. }
  4.  
  5. #interVeil{ /*CSS for veil that covers entire page while modal window is visible*/
  6. position: absolute;
  7. background: black url(blackdot.gif);
  8. width: 10px;
  9. left: 0;
  10. top: 0;
  11. z-index: 5;
  12. visibility: hidden;
  13. filter:progid:DXImageTransform.Microsoft.alpha(opacity=80);
  14. opacity: 0.8;
  15. }
and according to what you just said, i found this in dhtmlwindow.js:
Expand|Select|Wrap|Line Numbers
  1.     this.zIndexvalue=(this.zIndexvalue)? this.zIndexvalue+1 : 100 //z-index value for DHTML window: starts at 0, increments whenever a window has focus
  2.     var t=document.getElementById(t)
  3.     var divs=t.getElementsByTagName("div")
  4.     for (var i=0; i<divs.length; i++){ //go through divs inside dhtml window and extract all those with class="drag-" prefix
  5.         if (/drag-/.test(divs[i].className))
  6.             t[divs[i].className.replace(/drag-/, "")]=divs[i] //take out the "drag-" prefix for shorter access by name
  7.     }
  8.     t.style.zIndex=this.zIndexvalue //set z-index of this dhtml window
  9.     t.handle._parent=t //store back reference to dhtml window
  10.     t.resizearea._parent=t //same
  11.     t.controls._parent=t //same
  12.     t.onclose=function(){return true} //custom event handler "onclose"
  13.     t.onmousedown=function(){dhtmlwindow.zIndexvalue++; this.style.zIndex=dhtmlwindow.zIndexvalue} //Increase z-index of window when focus is on it
from second code text i'm posting, line 1, i changed
"this.zIndexvalue=(this.zIndexvalue)? this.zIndexvalue+1 : 100"
to
"this.zIndexvalue=(this.zIndexvalue)? this.zIndexvalue+1 : 500"

and now it shows me the dhtml window in front! but... i can still move or do something in the back page, it's not disabled as in internet explorer...

what am i missing now?
Jul 4 '08 #5
i've published the website again...
now it shows in front of everything but does not disable parent page's controls...

thanks in advance...
Jul 4 '08 #6
acoder
16,027 Expert Mod 8TB
how did you know about z-indexes values by just accessing my test website?
I used Firebug to inspect the elements.

I see that you got this from Dynamic Drive. Have you checked their documentation. Take the demo and adapt it to your requirements.
Jul 4 '08 #7
I used Firebug to inspect the elements.

I see that you got this from Dynamic Drive. Have you checked their documentation. Take the demo and adapt it to your requirements.
yes i have, but i'll double check, maybe i'm missing something..
thanks...
Jul 4 '08 #8
done!
i changed z-index to modal window and now it works perfectly

z-index, i had heard of it but never used it...
Jul 4 '08 #9
acoder
16,027 Expert Mod 8TB
You fixed it yourself and learned something new along the way which can only be A Good Thing :)

Post again if you have any more questions.
Jul 5 '08 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

5
by: Lee | last post by:
I am using a modal window and an iFrame to try and pull a return value back. I am doing this across domains. I have the value returned from the modal window to the iFrame window but I can not...
3
by: Smellyfrog | last post by:
Hi, I'm a newbie in mozilla web development. I've been developping apps for IE and Netscape for years though. After searching the internet (groups google etc..), I found a way to pop a modal...
1
by: gopal srinivasan | last post by:
I need to know how to close a parent modal window when child modal window opens, also i need to know the syntax for writing document on the modal window on the fly, like what we do in case of...
6
by: Mike | last post by:
i have a button that opens a modal window which has the calender control in it. I allow the user to select a date then that date should be passed back to the parent form. I'm having an issue with...
1
by: aarthi | last post by:
Hi there.... Thanx for ur valuable time... :) I have done an application which works fine in Internet explorer.I have used a number of modal windows.i want it to work fine in Firefox also.Were...
0
by: homsar | last post by:
I've seen many posts discussing the options we have when using modal windows within a web based application. Often times it seems the greatest hurdle is simply getting the modal window to post back...
1
by: Laurahn | last post by:
Hi: i'm using modal window (showmodelessdialog) on asp. when the object is created i used session variables. After the object is closed the data is remaining on the modal window when is open...
3
by: gamernaveen | last post by:
Hello , am new to js and ajax stuff (Well web designing itself) , I created a js/ajax modal window , the problem is , IT WORKS ON OPERA , FIREFOX (NOT TESTED) , BUT NOT ON IE. Everytime , IE...
3
by: gsuns82 | last post by:
Hi all, I am using modal window for some update purpose, the issue i am facing is,i am not able to refresh parent after closing modal window. The code i used: ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.