I’m looking at setting up a pretty complex custom form, and one of the requirements is “easy” updating preferably by uploading a CSV file and importing all the values.
Unfortunately the drop-down list is the only thing you can use a CSV file with. I basically need to use checkboxes with multiple elements in the labels, and while I can do it by hand, it’s a lot of work and chance of stuffing things up for an end user that wants to update the form fields themselves.
SO what I was thinking of was making something like an EES extension to upload a CSV file and repopulate the questions based on that. Unfortunately I can’t work out how to set the attributes of a form section correctly and I suspect it’s improbable that the JS API would handle it.
I don’t want to customise the bodycopy because these values are going to change ALL the time, and I don’t want to use an asset listing because I suspect it won’t work particularly well with multi-page forms (basically breaking the back button).
So with that in mind, I’m really not sure how to proceed. I guess I’m just looking for suggestions as to what you’d do. Has anyone got the API to do this?
For reference, I’m trying to do something like the following:
Edit:
Basically I’ve done this with checkboxes and the following in the label field:
Product Name $123/yrDescription
Just want a way to maintain it, really.