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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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