Re[2]: Solution to
2005/05/19 02:11
Viewed 65596 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

Re[3]: Solution to
2005/09/28 15:10
Viewed 63405 times
Replies: 1/1

I managed to solve this problem by adding
z-index: 1000;
in skin css file.

for example, my modified calendar-win2k-cold-2.css now starts with:

.calendar {
position: relative;
display: none;
border-top: 2px solid #fff;
border-right: 2px solid #000;
border-bottom: 2px solid #000;
border-left: 2px solid #fff;
font-size: 11px;
color: #000;
cursor: default;
background: #c8d4d0;
font-family: tahoma,verdana,sans-serif;
z-index: 1000;
}

last
Re[4]: Solution to
2008/02/25 20:38
Viewed 14095 times
Replies: 0/0

None of the solutions I´ve read here solved it :-(
I'm so sad; what can I do ?? I wouldn't like to get off the calendar from my intranet app

last
Google