GanttMessagesSettingsBuilder
Methods
Actions(System.Action)
The configuration of the Gantt action messages. Use this option to customize or localize the Gantt action messages.
Parameters
configurator - System.Action<GanttMessagesActionsSettingsBuilder>
The action that configures the actions.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Actions(am => am.AddChild("Value")))
)
Cancel(System.String)
The text similar to "Cancel" displayed in Gantt.
Parameters
value - System.String
The value that configures the cancel.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Cancel("Value"))
)
DeleteDependencyConfirmation(System.String)
The text similar to "Are you sure you want to delete this dependency?" displayed in Gantt dependency delete dialog.
Parameters
value - System.String
The value that configures the deletedependencyconfirmation.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.DeleteDependencyConfirmation("Value"))
)
DeleteDependencyWindowTitle(System.String)
The text similar to "Delete dependency" displayed in Gantt dependency delete dialog title.
Parameters
value - System.String
The value that configures the deletedependencywindowtitle.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.DeleteDependencyWindowTitle("Value"))
)
DeleteTaskConfirmation(System.String)
The text similar to "Are you sure you want to delete this task?" displayed in Gantt task delete dialog.
Parameters
value - System.String
The value that configures the deletetaskconfirmation.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.DeleteTaskConfirmation("Value"))
)
DeleteTaskWindowTitle(System.String)
The text similar to "Delete task" displayed in Gantt task delete dialog title.
Parameters
value - System.String
The value that configures the deletetaskwindowtitle.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.DeleteTaskWindowTitle("Value"))
)
Destroy(System.String)
The text similar to "Delete" displayed in Gantt.
Parameters
value - System.String
The value that configures the destroy.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Destroy("Value"))
)
Editor(System.Action)
The configuration of the Gantt editor messages. Use this option to customize or localize the Gantt editor messages.
Parameters
configurator - System.Action<GanttMessagesEditorSettingsBuilder>
The action that configures the editor.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Editor(em => em.AssignButton("Value")))
)
PlannedTasks(System.Action)
The configuration of the Gantt messages for Planned tasks.
Parameters
configurator - System.Action<GanttMessagesPlannedTasksSettingsBuilder>
The action that configures the plannedtasks.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.PlannedTasks(ptm => ptm.SwitchText("Value")))
)
Save(System.String)
The text similar to "Save" displayed in Gantt.
Parameters
value - System.String
The value that configures the save.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Save("Value"))
)
SelectView(System.String)
The aria-label of the View select element.
Parameters
value - System.String
The value that configures the selectview.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.SelectView("Value"))
)
Views(System.Action)
The configuration of the Gantt view messages. Use this option to customize or localize the Gantt view messages.
Parameters
configurator - System.Action<GanttMessagesViewsSettingsBuilder>
The action that configures the views.
Example
@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
.Name("gantt")
.Messages(m => m.Views(vm => vm.Day("Value")))
)