Hello,
Please show me how to use TUniFileUpload or TUniFileUploadButton (or anything else) to:
Browse for files to upload
The files are added to a list (and could be removed from the list). Files are not uploaded immediately
When the list is ready, we can upload all the files in the list with a command
Thank you
Try this approach:
1. MainForm.Script ->
customizeUploadForm = function() {
var _winUpload = Ext.WindowManager.getActive();
_winUpload.query('textarea')[0].hide();
_winUpload.query('button')[0].setStyle({
top: '85%'
}); // cancel
_winUpload.query('button')[1].setStyle({
top: '85%'
}); // upload
_winUpload.query('button')[1].setDisabled(true);
_winUpload.q