Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Cleverson on Feb 25, 2009 07:45
open dhtmlx forum
DHTMLX Calendar

How to change the Z-INDEX from the whole calendar ?

I already tried to change in css but doesn't work.
Answer posted by Support on Feb 25, 2009 08:19
The only z-index setting defined in CSS
.dhtmlxcalendar{
    z-index:99;

Please beware that it can be redefined for different skins
.dhtmlxcalendar_yahoolike {
    z-index:99;


Answer posted by Cleverson Viana on Feb 25, 2009 08:33

I know that, I already change the z-index for the yahoo. But, istill doesnk work.

I'm using the DHTMLXGrid also in the same screen. And noticed that have a folder called Calendar inside the DHTMXLGrid folder.

Could be the problem because of the use o the Grid ?

 

Thanks

 

Cleverson

Attachments (1)
Capture.JPG27.31 Kb
Answer posted by Cleverson on Feb 25, 2009 09:41
There's another way to redefine the Z-Index using Javascript ?
Answer posted by Cleverson Viana on Mar 01, 2009 18:32
There's another way to redefine the Z-Index using Javascript ?
Answer posted by Support on Mar 02, 2009 01:44
You can try

var calendar = new dhtmlxCalendarObject(...
calendar.entObj.style.zIndex=NNNN;