Hi all,
I don’t understand the handling of lists.
I created a value on my page:
I added a few items/records to that list.
Now I want to change (or delete) modify a special position in that list (item #3).
How to achieve this? If I use “…item#…”, I’m not able to remove or clear the item at position #3 . Or I want to change the value on this position.
How to do this?
okay… but I have this state (list) and want to store different “user answers”. The user steps through the application. if the user want to edit a already set answer (user navigates some steps back and switches another answer), I want to replace the item on a exact position in the list. If the user wants to choose another answer on step 3, then I want to replace the #3 item in the list with another string.
If it is a duplicate, you would have to do it a different way. Sometimes, it is more about adjusting your UI/UX, your database structure, or the way you are using data on the page than trying to make a lengthy work around. You might need to save the values into the database as one option so then each record is unique. Just one option. I am sure there are many ways to do what you are trying to do. Hope that helps a bit.