I would like one button to add rows to a grid widget and another button to remove rows, not sure how to accomplish this
I have two grid widgets on my screen, and I have successfully configured a button to call a service that adds any selected rows from grid # 1 to grid # 2 using Resources["InfoTableFunctions"].Union between two infotable inputs - one being the selected rows data from grid # 1 and the other being the editedtable all data of grid # 2. The output infotable from that service is bound to grid # 2.

I wanted another button that would remove rows from grid # 2 if they checked an editable checkbox in the rows. I wrote another service that can iterate the rows and remove any that have the checkbox checked, but I can't bind the output of THAT service to grid # 2 since it is already bound to the output of the first service.

Any suggestions?
