function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Tyler ZikaTyler Zika 

Move a record from one component to another.

I have a component, that based on a boolean, displays the proper records
<c:Items completed="false"/>
<c:Items completed="true"/>
I have a press lightning event that updates the record on the page.User-added image
When I refresh the page, the item goes to the completed list.
User-added image
How do I make this item go to the other component without refreshing the page? 
Aabhi BattaAabhi Batta
Hi, 

We can move data from one component to another by using the application event or component event . 

Check below the Link :

https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/events_intro.htm?search_text=event

Thanks,
 
Tyler ZikaTyler Zika
Aabhi,

My code shown is the same component though.
Aabhi BattaAabhi Batta
Tyler,

It is possible to change the value without refreshing the page . Will you please share the code?  It will helpful to solve the problem.
EldonEldon
you can create an event and listener in the same component. Whenever you select an item in the listening JS method slice the item from the current items and set it to the attribute that displays in the completed items.