Skip to main content

GanttCommandColumn.EditButton Property

Gets the Edit button’s settings.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public TreeListCommandColumnButton EditButton { get; }

Property Value

Type Description
TreeListCommandColumnButton

The button settings.

Remarks

The Edit button deletes the current task. Use the EditButton property to specify the button’s image, caption and visibility.

<dx:ASPxGantt ID="Gantt" runat="server" Height="700" ... >
    // ...
    <SettingsTasksList Width="45%">
        <Columns>
            <dx:GanttCommandColumn Width="90" >
                <EditButton Visible="true"/>
            </dx:GanttCommandColumn>
            //...
        </Columns>
    </SettingsTasksList>
</dx:ASPxGantt>

Examples

Online Demos

See Also