Hi
Here is a workaround for those who want to send additional POST data :
$("#jqxFileUpload").on('uploadStart', function(){
//CSS3 Selector to retreive the form
$('form[action="upload.php"]').append('<input type="hidden" name="name" value="value" />');
});