Thanks for that. Just to bring this thread up to date here's what I did:
1) Intercepted the delete button press on the (DevExpress) grid.
2) Checked if the BO's AutoShowDeleteConfirmation is False.
3) Is so fired my delete confirmation message and used the grid's SelectedRowsCount for delete record count.
4) If the user says ok to the delete then process as normal otherwise I cancel the button press event.
Cheers, Peter
Thanks for that. One (hopefully) minor issue remains - in the BO's BeforeDelete I want to display a message along the lines: "Confirm deletion of X rows". However I just can't find a BO Data Table or Data View property that tells me if a row is selected or not so I can calculate a value for X. Obviously it must be available for physical deletion process but I just can't identify where it is.
If I select 5 rows in a grid (Devexpress) for deletion and hit delete StrataFrame asks me to confirm the delete of each row one at a time. Can I change this to delete all 5 in one hit?
Actually, the ideal would be to be able to select either confirm one at time or all at once at the BO level.