Drag Tree

Hi,



As I can send the name of the dragged item (Tree) to front.



My problem, I have:





 Explorer










If id=“clientarea” with background=url(‘http://localhost:80/VerumWEB20X/imgs/transparentpixel.gif’)

The name of item is visible, when dragged, except on the area of id="frame and id=“titlebar”.



If id=“clientarea” with background=white

The name of item is visible, when dragged, only out of the area (div).



Some idea.



Best regards,



CHW

The problem can be caused by z-index order , because you have absolutely positioned elements on the page - the zIndex of dragged one must be greater than any other element on the page
zIndex of dragged element can be adjusted in dhtmlxtree.css

.dragSpanDiv,.dragSpanDiv td{    
    z-index:10;
    font-size : 12px;
    background-color:white; }