Skip to main content
All docs
V25.1
  • ASPxClientGantt.ShowTaskDetailsDialog(taskKey) Method

    Invokes the Task Details dialog.

    Declaration

    ShowTaskDetailsDialog(
        taskKey: any
    ): void

    Parameters

    Name Type Description
    taskKey any

    A task key.

    Remarks

    Call the ShowTaskDetailsDialog method to show the pop-up edit form for the specified task.

    function onTaskClick(s, e) {
        clientGantt.ShowTaskDetailsDialog(e.key);
    }
    
    <dx:ASPxGantt ID="Gantt" runat="server" ClientInstanceName="clientGantt" ...>
        <ClientSideEvents TaskClick="onTaskClick" />
        <!--...-->
    </dx:ASPxGantt>
    
    See Also