ASPxGantt.ClientSideEvents Property
Gets an object that lists the client-side events specific to the Gantt control.
Namespace: DevExpress.Web.ASPxGantt
Assembly: DevExpress.Web.ASPxGantt.v19.2.dll
Declaration
public GanttClientSideEvents ClientSideEvents { get; }
Public ReadOnly Property ClientSideEvents As GanttClientSideEvents
Property Value
Type |
Description |
GanttClientSideEvents |
An object that allows you to assign handlers to the client-side events available to the Gantt control.
|
The follwoing example illustrates how to use the ClientSideEvents property to specify handlers for the control's client-side events.
<dx:ASPxGantt ID="Gantt" runat="server" ... >
<ClientSideEvents Init="OnGanttViewInit" />
// ...
</dx:ASPxGantt>
function OnGanttViewInit(s, e) {
// your code
}
See Also