the stack order of the component
webix.ui({
view:"window",
zIndex:1,
..//config
});
Use zIndex:"auto" for setting zIndex equal to that of its parent.
By default, a modal window has the same zIndex as the previous absolutely positioned element, but because of the attaching order the modal layer will be on top anyway.
Back to top