Hi All,
After i create edit screen for my application, i want to display field history before edit and after edit data,
how to implement that
Warm Regards,
Kane
Hi Kane,
If you just want to compare the user's edits before actually storing them in the database, you could read the database when starting, and comparing the user's current edits with the previously retrieved data. If you want to track the user's edits over time, you'll need to keep a second history entity that you update every time the user saves an edit, so that you can query it to see any past changes.