Refresh 1 record in repeat table

I have an update form in a repeat of a paged query. When I save the update I want it to refresh in place. If I reload the data file it returns to page 1 of the paged data. How do I refresh just that one line? PHP mysql

you obviously have a paged query and use a QueryManager as a state manager for this paged query (eg offset)
You can on update success event:

  1. load the query
  2. set the QueryManager.offset to the query.page.current

I hope you got it