How to edit a list ?
I have a column in my sql table that is basically a list. For example, it might contain 12345,67890.98766,76124,97374. etc...
What is the best way to edit this list ?
If I just have <cfinput type="text" name="variableList" value="#qry.variableList#">, it will display it like above (which could be quite long) and I would just have to go to the values that I would like to edit. But this is not a good approach.
How can I set it up so that each individual value (comma separted) is in its own display field (one on top of the other to conserve space) and how will the list be updated with the changes.
For example, my display would be :
12345
67890
98766
76124
97374
If I change the second one only, from 67890 to 09876, how does that particular value get updated only, and the rest remain the same ?
Is this even possible ? If not, what would be the best way to do this ?
