Trigger writeback on data change or cross filter selection
I'm looking for a way to automatically write back when a checkbox is selected/un-selected, or a way to disable "data inconsistency detected".
I've got an application that shows differences in requests, and those requests are tied to accounts. I've got 2 filters (account id, request id) and 2 tables, one showing the current request data, and one showing the previous request data.
I've then got a writeback table with Account ID, Request ID, and a "Has Seen" checkbox. This checkbox is the crux of the application. My users will go to the app, view a request, and check "Has Seen"
Right now it looks like I would need the user to press the writeback button every time a checkbox is used. If they use the filters I have to move to another request, or another account, any check boxes they've already filled out are wiped away. Is there a way for me automatically write back when a checkbox is pressed? Or is there a way to bypass the data inconsistency detected prompt and have it write back all of my changes?