DADataTable changes

Is there an easy way to filter the DADataTable’s changed rows to hide the deleted ones? I just want to show the user (on Cocoa) the changed rows but not if they’ve deleted them.

Hi Jeremy,

DADataTableRow has a enum DADataTableRowState rowState; property that you should be able to, filter on. Possible values are:

enum DADataTableRowState
{
	rsUnchanged,
	rsModified,
	rsAdded,
	rsAddedInEditMode,
	rsDeleted
};

Does that work?

How are things otherwise? Hope you are doing well, and give my best to Jane!

Perfectly, thanks!

1 Like