How to delete or refresh form objects when leaving to another page?

0
I have a data grid where it has an XPATH data source and editable grids. When I updated the data in the grid then just leave the form by navigating to another page, what happens is that the updated data are  still visible which should not. So what can I do to undo the changes in that form and not reflect to another page.  
asked
2 answers
0

If you have an editable data grid, all changes made in that data grid will be directly committed to the database. 

If your scenario is that you want to be able to commit these changes on your own moment, then a editable listview is a better way to go.

answered
0

You can make an editable listview as follows

  • Add a layout grid in the listview
  • Add input widgets connected to the required attributes
  • In the listview properties, set the whole listview editable
answered