I'm trying to use a draggable TreeView inside a Window. I think the Window is interfering with the display of the red placement arrow when I try to move a tree node. I am able to have this work on another TreeView that is not in a Window.
Here is a REPL test page.
Hello Christian,
You are right - the problem is caused by the z-index styles of the Window and the TreeView drag hint. Here is a CSS workaround:
/* display the TreeView drag hint over a Window */
body > .k-drop-hint {
z-index: 11000 !important;
}
The Window's z-index is normally a little over 10,000.
The !important clause is needed, because the z-index of the hint element is set inline.
Regards,
Dimo
Progress Telerik