Hello,
I currently have a application that has a list of projects that users are able to select and I would like for the users to be able to enter a savings amount per year for the project:
1) User select Project ABC (last 3 years)
2) User will need to enter a savings amount for 3 years (2023,2024,2025)
So the normal way to do this is to submit the form 3 different times changing the year attribute in the form but I am wondering if the users can submit all 3 different entries with a single submit click. Any suggestions?
Hello Low,
If you able to identify number of years that user need to enter saving amount for your can create List of custom structure which will contain integer attribute for year and decimal attribute for saving and assign this list to list widget each list item into widget will contain label with year and textbox for user to enter saving amount.
When user click save you will use foreach loop through this list and save multiple records using create/ createOrUpdate action
Thank you so much for your help @Mostafa Othman ! I sort of understand how to tackle this now. I appreciate it!