Documentation

top

the top offset of a window

number top;

Example

webix.ui({
    view:"window",
    top:100,
    head:"..",
    body:{...}
}).show();

See also

Details

If you set position and left or top at the same time - left and top parameters will be ignored.

Back to top