Hi,
We have a business object of type ITreeNode. The children it returns are of a different type.
When selecting one of these children in the tree list editor of the list view, the DeleteObjectsViewController will crash (only if you don't have the "IsAdministrator" permission).
Code from DelteObjectsViewController line 130+
C#if(((ObjectView)View).SelectedObjects.Count == 1) {
isDeleteGrantedForAllSelectedObjects = DataManipulationRight.CanDelete(((ObjectView)View).ObjectTypeInfo.Type, ((ObjectView)View).SelectedObjects[0], LinkToListViewController.FindCollectionSource(Frame), View.ObjectSpace);
}
else {
isDeleteGrantedForAllSelectedObjects = DataManipulationRight.CanDelete(((ObjectView)View).ObjectTypeInfo.Type, null, LinkToListViewController.FindCollectionSource(Frame), View.ObjectSpace);
There the DataManipulationRight.CanDelete is checked with ((ObjectView)View).ObjectTypeInfo.Type. However, this does not match the selected object type. And therefore this function will throw an exception.