apiOnly

sets the uploader to the "invisible" mode

boolean apiOnly;

Example

webix.ui({
    view:"uploader",
    apiOnly:true,
    // uploader config
});


Default value:

false

Related samples

Details

apiOnly "invisible" uploader is initialized for situations when you need to integrate the uploader with a UI component to upload files (first and foremost, images) and display them in the component.

See also
Back to top