aspnet-devexpress-dot-web-dot-aspxfilemanager-fa758969.md
Gets an object that lists the client-side events specific to the ASPxFileManager.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public FileManagerClientSideEvents ClientSideEvents { get; }
Public ReadOnly Property ClientSideEvents As FileManagerClientSideEvents
| Type | Description |
|---|---|
| FileManagerClientSideEvents |
An object that allows you to handle ASPxFileManager‘s client-side events.
|
The FileManagerClientSideEvents object contains properties whose names correspond to the events available to the ASPxFileManager on the client side. These properties provide the capability to assign handling JavaScript functions to the required client-side events of the ASPxFileManager control.
<dx:ASPxFileManager ID="fileManager" runat="server" >
<ClientSideEvents ItemMoving="itemsMoving" />
...
</dx:ASPxFileManager>
function itemsMoving(s, e) {
// your code
}
ASPxFileManager - Client-Side Events
See Also