Public list associated with private booking (owner rows)

What you can do is dispense with the native delete function, and instead make your own.

So when viewing the seat details, add a standard button and then configure a custom action for it. Something like:

  • Increment Global Seat Counter
  • Delete Row
  • Show Notification
  • Go Back

You will probably need to create a Single Relation from your Seat table to back to your Flights table so that the increment can be done via that relation.

1 Like