Skip to main content
All docs
V25.1
  • ASPxClientGanttTimeTooltipShowingEventArgs.item Property

    Gets information about the task’s start and end time.

    Declaration

    item: any

    Property Value

    Type Description
    any

    The task’s start and end time.

    Remarks

    The item property gives access to the task’s start and end fields.

    Web Forms:

    <dx:ASPxGantt ID="Gantt" >
        <ClientSideEvents TaskUpdating="function(s, e) {
            var customContainer = document.createElement("div");  
            customContainer.classList.add("custom-time");
            customContainer.textContent = 'End Date: ' + e.item.end;  
            e.container.appendChild(customContainer); 
        }" />
    </dx:ASPxGantt>
    

    MVC:

    @Html.DevExpress().Gantt(settings => {
        settings.Name = "gantt";
        settings.ClientSideEvents.TaskUpdating = "function (s, e) { 
            var customContainer = document.createElement("div");  
            customContainer.classList.add("custom-time");
            customContainer.textContent = 'End Date: ' + e.item.end;  
            e.container.appendChild(customContainer); 
        }";
        ...
    }).Bind(
        GanttDataProvider.Tasks, GanttDataProvider.Dependencies, 
        GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
    ).GetHtml()
    
    See Also