How to read csv data

I have csv file. User can select the csv file from there local directory. I created a file select form and I created upload action on server side. it works for upload the file but next I want to read the content of data and show specific fields in the another form fields.

The import csv can be used for reading csv files.
You need this to be a different action?
I mean the user that uploads the csv you want to read it and viewits content?
Or the csv can be viewd on any time bu any other user?

Anyway, you can assign on the import csv step, the (already) uploaded csv and use the server ArrayList to create a list of them.
Check this

start from [2-0-working-with-array-lists](How to use Server Action Array Lists

1 Like