Documentation

formData

extra data that will be sent to server side along with the file uploading

hash formData;

Example

webix.ui({
    view:"uploader",
    formData:{
        userid:123,
        document:"attachment"
    }
});

Back to top