New to Telerik UI for ASP.NET MVC? Download free 30-day trial

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


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


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


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


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


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

In this article
Not finding the help you need?