Skip to main content
A newer version of this page is available. .
Tab

ASPxFileManager.ClientSideEvents Property

Gets an object that lists the client-side events specific to the ASPxFileManager.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public FileManagerClientSideEvents ClientSideEvents { get; }

Property Value

Type Description
FileManagerClientSideEvents

A FileManagerClientSideEvents object which allows assigning handlers to the client-side events available to the ASPxFileManager.

Remarks

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>

Online Demo

ASPxFileManager - Client-Side Events

See Also