ASPxClientFileManager.ItemsMoved Event
Occurs on the client side after all the selected items have been moved.
Declaration
ItemsMoved: ASPxClientEvent<ASPxClientFileManagerItemsMovedEventHandler<ASPxClientFileManager>>
Event Data
The ItemsMoved event's data class is ASPxClientFileManagerItemsMovedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
items | Gets an array of the currently processed items. |
oldFolderFullName | Gets the full name of the folder from which items are moved. |
Remarks
The ItemsMoved event serves as a notification that all selected items have been moved. The ItemsMoved event is generated after the ASPxClientFileManager.ItemMoved events related to all moved items have been fired.
You can use the event parameter’s properties to get an array of moved items (ASPxClientFileManagerItemsMovedEventArgs.items) or get the full name of the folder from which the items have been moved (ASPxClientFileManagerItemMovedEventArgs.oldFolderFullName).
To specify whether an item can be moved and cancel the action, handle the ASPxClientFileManager.ItemMoving event.