Hello;
Recently on my app some of the File uploaders stopped working.
They are auto-bound for my users to upload.
But an error pops up, “File Uploader Disabled”
A user can select a file, but the error pops up the instant the file is selected.
For my case I had ti fix the issue by switching the logic of the fileUpload element : Initially :
default : disabled
condition : enabled Fix:
default: enabled
condition: disabled
Cool, that is a good fix I had not thought to try flipping the condition. I ended up just making the file uploader always enabled but invisible with conditionals when I did not want it exposed.