Show calendar on top
2004/10/05 03:47
Viewed 61015 times
Replies: 2/5

Hi guys!
Thanks for your wonderful job. I have your calendar implemented on several pages and it works fantastic. My only problem is that I have one calendar on a "DIV" and when it is called the calendar appears behind the "DIV". I can select it but my question is: Is there any way to make it appear "on top"?
Thx.

Re: Solution to "Show calendar on top"
2004/10/05 04:33
Viewed 65786 times
Replies: 1/3

Hi again,
I found the solution. The problem was that my "DIV had a z-index higher than my calendar, so I changed the "DIV" z-index and now it works fine.

last
Re[2]: Solution to
2005/05/19 02:11
Viewed 62741 times
Replies: 1/2
by beat

Hi ,

Actually, I had the same problem, where I needed to keep jsCalendar on top of everything else.
I needed to change jscalendar.js as follows:

around line 746, added a really high z-Index to the dynamically created div for popup:

var div = Calendar.createElement("div");
this.element = div;
div.className = "calendar";
if (this.isPopup) {
div.style.position = "absolute";
div.style.display = "none";
div.style.zIndex = "1000"; /* Beat: added z-index */
}

Maybe Mihai could add that line to the next releases: doesn't harm in any way this really cool calendar, and helps it stay "on the top" :-) .

Beat

P.s. regarding web-browsers fields hiding, only IE remains problematic. I have seen here an alternate solution to hiding the fields below overlib:
http://www.bosrup.com/web/overlib/?Plugin_-_Hideform

last
Re: Show calendar on top
2008/02/25 20:27
Viewed 6429 times
Replies: 0/0

Hi can anyone tell me how to solve this problem. Any ideas ?? My pop-up calendar was working fine till i put it into a DIV. Now it doesn't appear and it doesn't throw any js error !!!
I NEED HEEEELPPPP !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

last
Google