Moving Text info from one Repeating Group to Another Repeating Group

Hello,

I’m making a very basic task app to learn Bubble and stuck trying to figure out how to move a text box.

A user inputs a Title and chooses from a field of Task Types. Both fields are saved into a data type (New-Task). Task title/task type are displayed in a text box inside a Repeating Group (Open Tasks) . Once the task is completed, the user clicks on a green check mark in the Open Tasks group and the text box is moved to another Repeating Group (Completed Tasks).

How do I move the text box from Open Tasks to Completed Tasks? See picture below for reference.

Thank you in advance for all your help.

Hi,

So, for each New Task, along with the title and type, you’ll want to have a status field.
Add a new yes/no field to the New Task data type, and set the default to NO.
Then, set your first repeating group’s data source as: do a search for New Tasks (where Status = NO);
and your second RG data source as: search for New Tasks (Status=YES)

Finally, add a workflow to your check button that:
Makes changes to Thing: Current cell’s New Task; (Status = YES)

Hello,

Thank you for your help. Much appreciated.

This topic was automatically closed after 70 days. New replies are no longer allowed.