Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
There is only one indicator for a row selection in the BO and that is the CurrentRowIndex which is displayed in the CurrentRow. This logic is left up to you as to know which rows are to be deleted. If they are loaded into a List then you could delete all of the rows by PK which have been selected in the list. There is nothing in the BO that allows you to "select." Now you can navigate through a BO and "mark: it for deletion back on the server without actually deleting until you call Save(). This is done by calling the DeleteCurrentRow(True) on the BO.
|