sets padding for all four sides of the widget
webix.ui({
view:"popup",
padding: 20,
// other properties
}).show();
Note that the property sets paddings for window successors only (i.e. popups, menus, suggests and context menus). It is also used with ui.window as the offset for slide animation provided that "position: top" is specified.
Back to top