How can I override the DevExpress GridView delete
I've got a table (myTable) that I want to remove rows from but not delete them. I'm expiring them by using an myTable.ActiveFlag. So when I "delete" a row from myTable, I'd like to run UPDATE myTable SET ActiveFlag = 0 WHERE id = @rowId What is the best way to do this using a DevExpress Gridcontrol with GridView? I've currently: Priva...