DHTMLX Colorpicker : Problem with iFrame

Hi,

I am facing problem with DHTMLX Colorpicker when I am using it with iFrame.

Means the colorpicker object in MoZilla is getting hidden under textbox.

Please help me.

If you are using some absolute positioned elements, it may be necessary to increase default z-index value used in component.
dhtmlxcolorpicker.css
.cs_colorBox{
    position:absolute;
    top:0px;
    left:0px;
    border:1px solid black;
    z-index:100; // this line can be added
}