Skip to main content
All docs
V25.1
  • GanttContextMenuItemBuilder.Text(String) Method

    Specifies the text inserted into the item element. Mirrors the client-side text option.

    Namespace: DevExtreme.AspNet.Mvc.Builders

    Assembly: DevExtreme.AspNet.Core.dll

    Declaration

    public GanttContextMenuItemBuilder Text(
        string value
    )

    Parameters

    Name Type Description
    value String

    The option value.

    Returns

    Type Description
    GanttContextMenuItemBuilder

    A reference to this instance after the method is called.

    Remarks

    @(Html.DevExtreme().Gantt()
        .ContextMenu(cm => {
            cm.Items(i => {
                i.Add().Text("myValue");
            });
        })
        //...
    )
    
    See Also