icon

defines whether an icon will be displayed

boolean|string icon;

Example

webix.ui({
    view:"portlet",
    mode:"replace",
    // disabling icon displaying
    icon:false,
    body:{
        template:"Drag and drop portlets"
    }
});


Default value:

"wxi-drag"

Related samples

Details

By default, the "wxi-drag" icon is added on a portlet. You can use any other default or custom icon instead or disable it.

See also
Back to top