ListBoxMessagesToolsSettingsBuilder

Methods

MoveDown(System.String)

Defines the text of the Move Down button that is located in the toolbar of the ListBox.

Parameters

value - System.String

The value that configures the movedown.

Example

Razor
 
            @(Html.Kendo().ListBox()
                .Name("listBox")
                .Messages(m => m.Tools(t=>t.MoveDown("Value")))
            )
             

MoveUp(System.String)

Defines the text of the Move Up button that is located in the toolbar of the ListBox.

Parameters

value - System.String

The value that configures the moveup.

Example

Razor
 
            @(Html.Kendo().ListBox()
                .Name("listBox")
                .Messages(m => m.Tools(t=>t.MoveUp("Value")))
            )
             

Remove(System.String)

Defines the text of the Delete button that is located in the toolbar of the ListBox.

Parameters

value - System.String

The value that configures the remove.

Example

Razor
 
            @(Html.Kendo().ListBox()
                .Name("listBox")
                .Messages(m => m.Tools(t=>t.Remove("Value")))
            )
             

TransferAllFrom(System.String)

Defines the text of the Transfer All From button that is located in the toolbar of the ListBox.

Parameters

value - System.String

The value that configures the transferallfrom.

Example

Razor
 
            @(Html.Kendo().ListBox()
                .Name("listBox")
                .Messages(m => m.Tools(t=>t.TransferAllFrom("Value")))
            )
             

TransferAllTo(System.String)

Defines the text of the Transfer All To button that is located in the toolbar of the ListBox.

Parameters

value - System.String

The value that configures the transferallto.

Example

Razor
 
            @(Html.Kendo().ListBox()
                .Name("listBox")
                .Messages(m => m.Tools(t=>t.TransferAllTo("Value")))
            )
             

TransferFrom(System.String)

Defines the text of the Transfer From button that is located in the toolbar of the ListBox.

Parameters

value - System.String

The value that configures the transferfrom.

Example

Razor
 
            @(Html.Kendo().ListBox()
                .Name("listBox")
                .Messages(m => m.Tools(t=>t.TransferFrom("Value")))
            )
             

TransferTo(System.String)

Defines the text of the Transfer To button that is located in the toolbar of the ListBox.

Parameters

value - System.String

The value that configures the transferto.

Example

Razor
 
            @(Html.Kendo().ListBox()
                .Name("listBox")
                .Messages(m => m.Tools(t=>t.TransferTo("Value")))
            )