TaskBoardCardMenuBuilder

Methods

Name(System.String)

The name of the button.

Parameters

value - System.String

The value that configures the name.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .CardMenu(c => c.Add().Name("card"))
            )
             

Text(System.String)

The text of the button.

Parameters

value - System.String

The value that configures the text.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .CardMenu(c => c.Add().Text("text"))
            )
             

Icon(System.String)

The icon of the button.

Parameters

value - System.String

The value that configures the icon.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .CardMenu(c => c.Add().Icon("gear"))
            )
             

SpriteCssClass(System.String)

The class name of the icon element.

Parameters

value - System.String

The value that configures the spritecssclass.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .CardMenu(c => c.Add().SpriteCssClass("custom-icon-class"))
            )
             

Command(System.String)

The command of the button.

Parameters

value - System.String

The value that configures the command.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .CardMenu(c => c.Add().Command("MyCustomCommand"))
            )
             

Options(System.String)

The command options of the button.

Parameters

value - System.String

The value that configures the options.

Example

Razor
 
            @(Html.Kendo().TaskBoard()
                    .Name("taskBoard")
                    .CardMenu(c => c.Add().Options("myvalue"))
            )