urlData

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

object urlData;

Example

webix.ui({
    view:"uploader",
    urlData:{
        userid:123,
        documentid:456
    }
});

Details

The data will be added to the query string of POST request with file data.

See also
Back to top