spacer

class webix.ui.spacer(data)
Arguments:
  • data (object) – A configuration object

Spacer view.

References

views
view().
helpers
protoUI().

External references

Official documentation page.

Code

1
2
3
4
5
6
7
8
9
webix.protoUI({
    name:"spacer",
    defaults:{
        borderless:true
    },
    $init:function(){
        this._viewobj.className += " webix_spacer";
    }
}, webix.ui.view);