Back to Devexpress

ASPxGantt.ClientSideEvents Property

aspnet-devexpress-dot-web-dot-aspxgantt-dot-aspxgantt-ad53279e.md

latest1.6 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public GanttClientSideEvents ClientSideEvents { get; }
vb
Public ReadOnly Property ClientSideEvents As GanttClientSideEvents

Property Value

TypeDescription
GanttClientSideEvents

An object that allows you to assign handlers to the client-side events available to the Gantt control.

|

Remarks

The following example illustrates how to use the ClientSideEvents property to specify handlers for the control’s client-side events.

aspx
<dx:ASPxGantt ID="Gantt" runat="server" ... >
    <ClientSideEvents Init="OnGanttViewInit" />
    // ...    
</dx:ASPxGantt>
js
function OnGanttViewInit(s, e) {
    // your code
}

See Also

ASPxGantt - 'How To' Examples

ASPxGantt Class

ASPxGantt Members

DevExpress.Web.ASPxGantt Namespace