Documentation

padding

defines the space between the element borders and content (applies the specified value to all sides).

number padding;

Example

webix.ui({
        container:"box",
        view:"toolbar",
        padding:10,
        cols:[
            { view:"button", value:"Load" },
            { view:"button", value:"Save" },
            { view:"button", value:"Delete" }
        ]
});

See also

Details

The image below shows how the script above applies the padding property.


Back to top