ASPxClientGanttTaskUpdatingEventArgs.values Property
In This Article
Specifies the task values.
#Declaration
TypeScript
values: any
#Property Value
Type | Description |
---|---|
any | The task values. |
#Remarks
Web Forms:
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents TaskUpdating="function(s, e) {
console.log("Task title was changed from " + e.values["Subject"] + " to " + e.newValues["Subject"]);
}" />
</dx:ASPxGantt>
MVC:
@Html.DevExpress().Gantt(settings => {
settings.Name = "gantt";
settings.ClientSideEvents.TaskUpdating = "function (s, e) {
console.log("Task title was changed from " + e.values["Subject"] + " to " + e.newValues["Subject"]);
}";
...
}).Bind(
GanttDataProvider.Tasks, GanttDataProvider.Dependencies,
GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()
See Also