I wrote a simple custom action to search for products (search by product name)
This action (searchProduct) returns a list of ProductRows, saved in var "searchResult"
Based on this list "searchResult" I generate the children of a ListView.
So far, so good, that works, some matching records are displayed!
But when I call an Edit Dialog to edit the data of a certain row, the ListView isn't updated
after saving changes!
In the Edit dialog I cant call "Refresh Database Request", because I have no reference to the list.
How could I update the ListView after changes made in the dialog?
Is it possible to use a custom Action to create a BackendQuery directly?
As far as I have seen, with a Supabase BackendQuery you can directly select a table or a view, or an API call. Can you also call a βCustom Actionβ there?