Documentation

apiOnly

sets the uploader to "invisible" mode. False by default.

boolean apiOnly;

Example

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

See also

Details

ApiOnly "invisible" uploader is inited for situations when you need to integrate the uploader with a UI component to upload files (picture, first and furemost) and display them in the component.

Back to top