MultiSelectMessagesSettingsBuilder

Methods

Clear(System.String)

The text message when hovering the input clear button.

Parameters

value - System.String

The value for Clear

RETURNS

Returns the current MultiSelectMessagesSettingsBuilder instance.

Example

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

DeleteTag(System.String)

The text message shown when hovering delete icon in a selected tag.

Parameters

value - System.String

The value for DeleteTag

RETURNS

Returns the current MultiSelectMessagesSettingsBuilder instance.

Example

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

DownArrow(System.String)

Specifies the text that will be used for the MultiSelect downArrow title attribute.

Parameters

value - System.String

The value for DownArrow

RETURNS

Returns the current MultiSelectMessagesSettingsBuilder instance.

Example

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

NoData(System.String)

The text message shown in the noDataTemplate when no data is available in the widget drop-down.

Parameters

value - System.String

The value for NoData

RETURNS

Returns the current MultiSelectMessagesSettingsBuilder instance.

Example

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

SingleTag(System.String)

The text message shown in the single TagMode tag.

Parameters

value - System.String

The value for SingleTag

RETURNS

Returns the current MultiSelectMessagesSettingsBuilder instance.

Example

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