ASPxClientGanttDependencyDeletingEventArgs.values Property
In This Article
Specifies the dependency values.
#Declaration
TypeScript
values: any
#Property Value
Type | Description |
---|---|
any | The values. |
#Remarks
Web Forms:
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents DependencyDeleting="function(s, e) {
if (e.values["ParentID"] == 10) {
//...
e.cancel = true;
}
}" />
</dx:ASPxGantt>
MVC:
@Html.DevExpress().Gantt(settings => {
settings.Name = "gantt";
settings.ClientSideEvents.DependencyDeleting = "function (s, e) {
if (e.values["ParentID"] == 10) {
//...
e.cancel = true;
}
}";
...
}).Bind(
GanttDataProvider.Tasks, GanttDataProvider.Dependencies,
GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()
#Concepts
See Also