Rocky, thanks for the reply.
I have just tried a simple test using Delete and the DataSource_Delete handler is not firing when I delete from the grid.
I have debugged this and the CanDelete Property in CslaDataSourceView is returning False:
Public Overrides ReadOnly Property CanDelete() As Boolean
Get
If GetType(Csla.Core.IUndoableObject).IsAssignableFrom( _
CslaDataSource.GetType(mTypeAssemblyName, mTypeName)) Then
Return True
Else
Return False
End If
End Get
End Property
The code is the same for the CanInsert and CanUpdate.
Do you have any idea of how I could work around this.
Thanks,
Bill