Adding a 2nd Item Click Action

Can anyone guide me in creating a 2nd item click action please? I have a 1st “item click” action which adds a row to my task log on a different screen, which then triggers a check mark signifying it is done. I’d to add a 2nd “item click” action where in tapping the item would undo the 1st “item click” action. Appreciate any help.

jayson

Just set up a workflow for the button with a condition:

  • If condition = false, add row (as you’ve done right now)
  • If condition = true, set column values to false (or delete row, depending on your use case)

Then, if you want to make it pretty, add an if-then-else column in the table you’re using:

  • If condition = false: “Confirm”
  • If condition = true: “Undo”

Then use that column for the text on the button. The button now has 2 functions and will have a relevant “label” (button text)

1 Like

Appreciate the feedback. I’m not sure how that would work. Basically I’m trying to create a toggle on/off.

It works as a branched action and would show the label correctly on the front end based on conditions @jb_1mprove has lined out.

Or if it’s complex for you to setup, you can just have multiple actions and show/hide them based on conditions.