Hello Guys, I’ve been reading some post in the community and watching some of the videos, but I’m stuck and not able to find a way to update a bool column in a different table.
Explanation:
I have a table for clients and if these clients dont have a point of contact, the bool column will be empty (false). However, when I add a new point of contact, the user will be given the option to select the client they work to (choice fetching form the clients table)
So, what I want is after they select the client they work for, I want to update the bool column in the clients table. I’m using a helper table so I can store the data for the point of contact and client and once done, everything is clear and ready for the next operation (user specific columns in the helper table)
I know about using API, I have a column in the helper table with the row ids of the clients the user selects from the choice component, but i dont know how to use these comma separated list of rowids to set the api call everything else.
some guidance? thanks