New to Telerik UI for ASP.NET MVC? Download free 30-day trial

GanttMessagesActionsSettingsBuilder

Methods

AddChild(System.String)

The text similar to "Add child" displayed as Gantt "add child" buttons.

Parameters

value - System.String

The value that configures the addchild.

Example


            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.Actions(am => am.AddChild("Value")))
            )

Append(System.String)

The text similar to "Append" displayed as Gantt "append" buttons.

Parameters

value - System.String

The value that configures the append.

Example


            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.Actions(am => am.Append("Value")))
            )

InsertAfter(System.String)

The text similar to "Add below" displayed as Gantt "add below" buttons.

Parameters

value - System.String

The value that configures the insertafter.

Example


            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.Actions(am => am.InsertAfter("Value")))
            )

InsertBefore(System.String)

The text similar to "Add above" displayed as Gantt "add above" buttons.

Parameters

value - System.String

The value that configures the insertbefore.

Example


            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.Actions(am => am.InsertBefore("Value")))
            )

Pdf(System.String)

The text of "Export to PDF" button of the Gantt toolbar.

Parameters

value - System.String

The value that configures the pdf.

Example


            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Messages(m => m.Actions(am => am.Pdf("Value")))
            )

In this article
Not finding the help you need?