Hello! Does anybody know how to add multiple file ...
# suitescript
j
Hello! Does anybody know how to add multiple file fields in an Online Customer Form? Upon checking, it seems like although we can add multiple file fields on an HTML form, but it only captures 1 file. TIA!
Was able to achieve this by adding input file type field on the HTML form. Just need to make the name unique for each input field and it will attach the file on the file subtab.
<input type="file" id="myFile1" name="filename1">
<input type="file" id="myFile2" name="filename2">