![]() |
Sergey Kornilov admin 10/3/2012 |
I think you can implement BeforeDelete event where instead of deleting record you can update it setting 'deleted' field to Y. You would also need to add a WHERE clause to your list page SQL query so it only shows non-deleted records: select ... where deleted <> 'Y'
CustomQuery("Update <table name> set deleted='Y' where ".$where); |