Removing list item


When someone clicks on the Apply button on the left list I want it to move to the other list but instead it just appears in both lists. I don’t know how to remove it from the first list. If anyone knows how please share. I would really appreciate the help. Thanks in advance.

Include a Boolean named “Apply” in the collection that you are displaying in the list.

Filter “Apply” is FALSE, you get the list of users that did not apply

Filter Apply=TRUE, you get a list of only those who have applied.

Of couse, when user click Apply, you need to Update that record in the collection to Apply= TRUE
Likewise if they click Unapply, you need to set Apply=FALSE

Best Regards

When I attempted that it moved lists but on every users screen so if one user clicked apply it would move to the other screen for every user.

Some other informations is that the list on the left is displaying job requests and the second list is displaying the same information but the list is of applications that the user created for the jobs. The application is working well. When the apply button is pressed the application is created and it appears on the other list. When the Cancel button is pressed it is removed from the list. The only issue is that the list item is not disappearing from the list on the right. I also only want the list item to disappear from the users screen and not everyones screen so everyone can apply but only once. Please let me know if this was unclear or if there is any other information you need to fully understand the situation. Thank you again for all your help!

Use a many to many relation or use another collection to store the requests so you can add or delete requests. Easy method is using a many to many relation like favorite, follow functions.

So on the Apply button you can update the current request with adding logged in user to that many to many relation and you can add a visibility condition for the button as current application > many to many relation > all > does not contain > logged in user or filter the list with the same condition to hide the button or record after applying so user cannot apply again expect after trying canceling or got rejected from the company.

Then in the next list cancel button goes the same but instead of adding logged in user in the update action, make it as remove logged in user. Also for the condition change it as Contains from Does not contains.

I am not sure how I would store the requests in a many to many relationship and how I would add users to that. I would really appreciate an explanation. Thank you!

I mean like create a many to many relationship property between users & applications collections on the application collection and name it as like applied users and do the below.

Thank you so much this was very helpful!!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.