ASPxFileManager.ClientSideEvents Property
Gets an object that lists the client-side events specific to the ASPxFileManager.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
FileManagerClientSideEvents | An object that allows you to handle ASPxFileManager‘s client-side events. |
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