ASPxClientFileManager.FocusedItemChanged Event
In This Article
Fires after the focused item has been changed.
#Declaration
TypeScript
FocusedItemChanged: ASPxClientEvent<ASPxClientFileManagerFocusedItemChangedEventHandler<ASPxClientFileManager>>
#Event Data
The FocusedItemChanged event's data class is ASPxClientFileManagerFocusedItemChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
full |
Gets the full name of the item currently being processed. |
item | Gets the file manager item object related to the event. |
name | Gets the name of the focused item. |
#Remarks
The FocusedItemChanged event is raised when an end-user moves focus from one item to another. You can use the event parameter’s properties to identify the newly focused item.
See Also