Retrieve all file names in MultiFileField ojbect

Hi all,

I try to retrieve all the file names in my MultiFileField so I could display them in a table after the files have been uploaded (needed for name mapping purposes). Unfortunately I do not succeed with the current documentation. Can anyone help?

Cheers!

Hi Jelle,

Welcome on the forum.

I try to retrieve all the file names in my MultiFileField…

The MultiFileField returns a list of FileResources in the params. The file name can be retrieved with my_file_resource.filename.

…so I could display them in a table after the files have been uploaded

Can you elaborate on what you exactly want?

Hi, I figured it out with a colleague, I used SetParamsResult in the end :slight_smile: .

1 Like