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

Razor
 
            @(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

Razor
 
            @(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

Razor
 
            @(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

Razor
 
            @(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

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