Back to Devexpress

GanttSettings.DataBound Property

aspnetmvc-devexpress-dot-web-dot-mvc-dot-ganttsettings-4dd3548d.md

latest1.3 KB
Original Source

GanttSettings.DataBound Property

Enables you to perform a custom action after the Gantt has been bound to its data source.

Namespace : DevExpress.Web.Mvc

Assembly : DevExpress.Web.Mvc5.v25.2.dll

NuGet Package : DevExpress.Web.Mvc5

Declaration

csharp
public EventHandler DataBound { get; set; }
vb
Public Property DataBound As EventHandler

Property Value

TypeDescription
EventHandler

A EventHandler method to which custom processing is delegated.

|

Remarks

Run Demo: MVCxGantt - Data Binding and Editing

csharp
settings.DataBound = (sender, e) => {
    MVCxGantt gantt = sender as MVCxGantt;
    // your code
};

See Also

GanttSettings Class

GanttSettings Members

DevExpress.Web.Mvc Namespace