-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add items to form repeater from an Excel or CSV file #157
Comments
You need to split that problem in two. First, gather the data from the CSV file in a javascript array. There are a lot of tutorials and articles on how to do that. Upload the file, read it, parse it, get the data into the array, map it to the repeater fields. Done. Say your repeater has the ID my_repeater and your javascript array is named my_js_array. $('#my_repeater').setList(my_js_array); |
How come I didn't think of that !! Thank a lot mate for the tip that helped me a lot. |
See an example for uploading: |
Hi there
Is it possible to add a feature where the user can import excel file items to a form repeater before submiting the form to database ?
Form repeater is kind of time consuming when it comes to large amount of data (which is my case all the time), in every form we need to input more than 500 rows which are already in a excel file.
Thank You
The text was updated successfully, but these errors were encountered: