I’ve built an app that creates a to-do list. The user is supposed to click a button to add items to the list. Once the button is clicked a box pops up asking you to add items to the list.
Right now the database is capturing only one item being added to the list. If I try to add another item the first item disappears. How do I correct this in the database?
Though the list is being captured in the database it is not appearing on the to-do list page of the app.
I you’re using the add operator it should work for adding single items to a list. if you’re using add list I think it will override the current set list.
@adamhholmes your questions helped me to keep looking at what I did wrong with the repeating group. Which is great cause I figured out how to pass data to the proper spot on the app. My new problem is all of the list items are appearing on one line instead of multiple lines. Do you know why this is?
Probably bc you have that field as a List, and the List is what you’re displaying here. So, you could do a split by operator and that will help, I think. Or a nested repeating group with the List as the datasource.
LOL @adamhholmes@doug.burden thanks for your input. I know I kept jumping around since your comments kept triggering a new thought. but I appreciate it!