This topic is locked
[SOLVED]

 Update List after multiple update

1/29/2011 3:47:59 PM
PHPRunner General questions
A
alanguth author

I have added a button that performs an update of multiple records selected from a list page. The records are updated correctly but I am at a loss on how to update the data on the list page to the new data. The operation changes the date in one of the fields to today's date. By paging to the next page of the list and then returning to the page on which the updated records are does show the updated records. In addition to this I want to uncheck the checkbox on the list page for the records to be updated after the records have been updated.
Any help with this will be appreciated.
Alan

A
alanguth author 2/21/2011

With the help of Sergey got this solved very simply.
The following was placed at the end of ClientAfter event:

window.location.reload();


The window then reloaded the data from the database and switched off the selected checkkboxes.
Thanks and regards
Alan