MultiSelectMessagesSettingsBuilder

Methods

Clear(System.String)

The text message shown when hovering the clear button.

Parameters

value - System.String

The value that configures the clear message.

Example

Razor
 
             @(Html.Kendo().MultiSelect()
                        .Name("MultiSelect")
                        .Messages(m => m.Clear("Remove"))
            )
             

DeleteTag(System.String)

The text message shown when hovering the delete button.

Parameters

value - System.String

The value that configures the delete tag message.

Example

Razor
 
             @(Html.Kendo().MultiSelect()
                        .Name("MultiSelect")
                        .Messages(m => m.DeleteTag("Delete"))
            )
             

DownArrow(System.String)

The text message shown when hovering the arrow button.

Parameters

value - System.String

The value that configures the down arrow message.

Example

Razor
 
             @(Html.Kendo().MultiSelect()
                        .Name("MultiSelect")
                        .Messages(m => m.DownArrow("Open"))
            )
             

SingleTag(System.String)

The text message shown in single tag.

Parameters

value - System.String

The value that configures the single tag.

Example

Razor
 
             @(Html.Kendo().MultiSelect()
                        .Name("MultiSelect")
                        .Messages(m => m.SingleTag("Selected"))
            )
             

NoData(System.String)

The text that would be displayed in the NoDataTemplate.

Parameters

value - System.String

The value that configures the NoDataTemplate message.

Example

Razor
 
             @(Html.Kendo().MultiSelect()
                        .Name("MultiSelect")
                        .Messages(m => m.NoData("no records loaded"))
            )