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

TaskBoardMessagesSettingsBuilder

Methods

Edit(System.String)

Specifies text to be rendered for the "Edit" message.

Parameters

value - System.String

The value that configures the edit.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.Edit("editMessage"))
            )

CreateNewCard(System.String)

Specifies text to be rendered for the "Create new card" message.

Parameters

value - System.String

The value that configures the createnewcard.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.CreateNewCard("createNewCardMessage"))
            )

Create(System.String)

Specifies text to be rendered for the "Create" message.

Parameters

value - System.String

The value that configures the create.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.Create("createMessage"))
            )

Search(System.String)

Specifies text to be rendered for the "Search" message.

Parameters

value - System.String

The value that configures the search.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.Search("searchMessage"))
            )

PreviewCard(System.String)

Specifies text to be rendered for the "Preview card" message.

Parameters

value - System.String

The value that configures the previewcard.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.PreviewCard("previewCardMessage"))
            )

AddCard(System.String)

Specifies text to be rendered for the "Add card" message.

Parameters

value - System.String

The value that configures the addcard.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.AddCard("addCardMessage"))
            )

EditCard(System.String)

Specifies text to be rendered for the "Edit card" message.

Parameters

value - System.String

The value that configures the editcard.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.EditCard("editCardMessage"))
            )

DeleteCard(System.String)

Specifies text to be rendered for the "Delete Card" message.

Parameters

value - System.String

The value that configures the deletecard.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.DeleteCard("deleteCardMessage"))
            )

AddColumn(System.String)

Specifies text to be rendered for the "Add column" message.

Parameters

value - System.String

The value that configures the addcolumn.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.AddColumn("addColumnMessage"))
            )

EditColumn(System.String)

Specifies text to be rendered for the "Edit column" message.

Parameters

value - System.String

The value that configures the editcolumn.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.EditColumn("editColumnMessage"))
            )

DeleteColumn(System.String)

Specifies text to be rendered for the "Delete column" message.

Parameters

value - System.String

The value that configures the deletecolumn.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.DeleteColumn("deleteColumnMessage"))
            )

Close(System.String)

Specifies text to be rendered for the "Close" message.

Parameters

value - System.String

The value that configures the close.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.Close("closeMessage"))
            )

Cancel(System.String)

Specifies text to be rendered for the "Cancel" message.

Parameters

value - System.String

The value that configures the cancel.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.Cancel("cancelMessage"))
            )

Delete(System.String)

Specifies text to be rendered for the "Delete" message.

Parameters

value - System.String

The value that configures the delete.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.Delete("deleteMessage"))
            )

SaveChanges(System.String)

Specifies text to be rendered for the "Save changes" message.

Parameters

value - System.String

The value that configures the savechanges.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.SaveChanges("saveChangesMessage"))
            )

Title(System.String)

Specifies text to be rendered for the "Title:" message.

Parameters

value - System.String

The value that configures the title.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.Title("titleMessage"))
            )

Description(System.String)

Specifies text to be rendered for the "Description:" message.

Parameters

value - System.String

The value that configures the description.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.Description("descriptionMessage"))
            )

NewColumn(System.String)

Specifies text to be rendered for the "New column" message.

Parameters

value - System.String

The value that configures the newcolumn.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.NewColumn("newColumnMessage"))
            )

DeleteColumnConfirm(System.String)

Specifies text to be rendered for the "Are you sure you want to delete this column?" message.

Parameters

value - System.String

The value that configures the deletecolumnconfirm.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.DeleteColumnConfirm("deleteColumnConfirmMessage"))
            )

DeleteCardConfirm(System.String)

Specifies text to be rendered for the "Are you sure you want to delete this card?" message.

Parameters

value - System.String

The value that configures the deletecardconfirm.

Example


            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .Messages(m => m.DeleteCardConfirm("deleteCardConfirmMessage"))
            )

In this article
Not finding the help you need?