ASPxClientFileManager.CurrentFolderChanged Event
Fires on the client side after the current folder has been changed within a file manager.
Declaration
CurrentFolderChanged: ASPxClientEvent<ASPxClientFileManagerCurrentFolderChangedEventHandler<ASPxClientFileManager>>
Event Data
The CurrentFolderChanged event's data class is ASPxClientFileManagerCurrentFolderChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
fullName | Gets the full name of the folder currently being processed. |
name | Gets the name of the currently processed folder. |
Remarks
Write a CurrentFolderChanged event handler to perform specific actions on the client side after each time the current folder is changed. You can use the event parameter’s properties to identify the new current folder.
See Also