I have a Grocery Crud instance running that has a custom action button using add_action. It uses the link_url to fire off a function that does some stuff to the data in that row, and then the function redirects back to the list view. Specifically, the action removes the row from the view (not deleted, just tagged so it no longer matches the relevant "WHERE" clause).
Problem is, when the redirect occurs, it jumps back to the top of the page, which is annoying, since the list view is often long (I have it set for 100 rows at the moment), and worse yet, to the first page.
Is there any way to have it jump back to where the user was before he clicked the button? Note that it can't search by the primary id since the row is no longer displayed after the button is clicked.....