Hi Marcel,
Browsers don’t really like you messing with file inputs value using js.
There are protections that browsers implement to prevent rogue scripts from messing around with file input’s .value.
The proper way of doing this is to reset your form.
My form has 2 parts at the moment - one with all the text inputs(under edit details) and then the file field.
Would it be programatically correct to split the single form into 2 forms - one for the text and another for the files. Then I can just reset files without resetting the text inputs.
then on submit of form 1(text inputs) also submit file form as a dynamic event?