makes the component visible
node | HTMLElement | html element where the popup is shown |
position | object | optional, object that may contain pos, x and y properties (see details) |
point | string | optional, the popup pointer (arrow) direction ("top", "left", "right", "bottom") |
// specifying an HTML node near which a window will be shown
$$("window").show(node);
// placing the window above the node
$$("window").show(node, {pos:"top"});
// setting the window's position
$$("window"). show({
x:300, // left offset from the right side
y:50 // top offset
});
The properties of the position object are:
Position object may be passed as the first argument instead of node.
This method helps showing the windows that were hidden before (initially or with the help of the hide() method). To show a window you can use:
webix.ui({
view:"window",
hidden:false, /* ! */
head:"My Window",
body:{
template:"Some text"
}
});