Is there a way to detect when a fileInput() is busy uploading? I need to be able to disable a couple of buttons while uploading, however, on the server-side, it’s only possible to detect the fileInput has been used after the upload is finished.
I believe I solved my own issue. I wrote following wrapper around fileInput() for anyone that's interested. Observing input[["{inputId}-upload_started"]] now allows listening to upload in progress events.