Problem with Grid and Calendar in Modal Windows

Hi, I’m using a grid in modal windows, but with double click in column calendar the calendar appears behind modal window. I have this problen in Internet Explorer 8,but in Google Chrome and Firefox work fine, but the 80% of my users, using Internet Explorer 8, please help me. I using DhtmlxGrid Pro v2.6.

this is the pague, click in botom “Nuevo” colum “Fecha Evento” and see you mi problem.

http://www.interactivo.maristas.cl/asignatura/base.php

Thanks, help me please

Can anybody replay for this plz, its very urgent.

thanks

Please, find the answer to your problem here:
viewtopic.php?f=2&t=14321

Thanks, buy I try with that steps, and no work it in Internet Explorer, another solution please…

Unfortunately we cannot reproduce this issue locally. Can you please provide complete demo where we can reproduce it? You can find tutorial how to create complete demo here docs.dhtmlx.com/doku.php?id=othe … leted_demo

Thanks Olga, Thanks sematik

I solved the problem replacin this event:

oGridFileManagement.attachEvent(“onXLE”, function()
{
aElements = getElementsByClassName(“dhtmlxcalendar_yahoolike”);
for (i=0; i<aElements.length; i++)
{
aElements[i].parentNode.style.zIndex=“9999”;
}
});

By this:

function SeleccionCheckCurso(rId,cInd,state)
{
if(state==true)
{
gridCursosProfesor.selectCell(gridCursosProfesor.getRowIndex(rId),3,true,true,true);
aElements = getElementsByClassName(“dhtmlxcalendar_yahoolike”);
for (i=0; i<aElements.length; i++)
{
aElements[i].parentNode.style.zIndex=“9999”;
}

}
else
{
gridCursosProfesor.editStop(true);
ActivarBoton("#Todos",false);
gridCursosProfesor.cells(rId,3).setValue(’ ');
ArregloCursosFechas.splice(rId,1);
}
if(ArregloCursosFechas.length==0) ActivarBoton("#Limpiar",false);
}

and work it. :smiley: