I have a grid based on the Contacts table. and one of the columns is a Yes/No field called "Dormant".
I would like to check certain rows in the grid and then update those fields in the Contacts table using buttons. Let's say I have 2 buttons called "Make Dormant" and "Make Active".
So...Let's say I have a grid filter at the top called "Dormant" that is showing want to check 20 total dormant contacts, and I want to make 10 of them active. In other words, I'd like to check 10 rows in the grid and then press the "Make Dormant" button - thereby updating the "Dormant" field in the Contacts table to "TRUE". for those checked rows.
I imagine the first action associated with the "Make Dormant" button would be Loop through grid, using the "Checked rows only" option. I'm forced to choose a condition for this so I guess I could specify that the "Dormant" field is "FALSE", but that's really redundant anyway, because I have filters for the grid for "Dormant", "Active" and "All Customers". But regardless, I can't loop through the grid without specifying something, so that's tolerable.
Anyway, what next? I'd like to use the Update field in table action, within the Loop through grid action, but all that does is update all 20 customers., and not just the checked rows. This is because the update field in table option does not allow me to specify to update only the checked rows. I thought that looping through the table, checked rows only would take care of that, but it doesn't.
How do I structure this? It seems like it would be easy to do...