FileManagerSettings.ItemsDeleted Property
Allows you to perform custom actions after all the selected items have been deleted.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Property Value
Type | Description |
---|---|
FileManagerItemsDeletedEventHandler | A FileManagerItemsDeletedEventHandler delegate method allowing you to implement custom processing. |
Remarks
Implement a FileManagerItemsDeletedEventHandler delegate method and assign it to the ItemsDeleted property to perform custom actions after all the selected items have been deleted. The delegate method parameter’s FileManagerItemsDeletedEventArgs.Items property gets an array of deleted items.
To specify if a file can be deleted and cancel the action, use the FileManagerSettings.ItemDeleting property.
See Also