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 for MoveDown
RETURNS
Returns the current ListBoxMessagesToolsSettingsBuilder instance.
Example
@(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 for MoveUp
RETURNS
Returns the current ListBoxMessagesToolsSettingsBuilder instance.
Example
@(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 for Remove
RETURNS
Returns the current ListBoxMessagesToolsSettingsBuilder instance.
Example
@(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 for TransferAllFrom
RETURNS
Returns the current ListBoxMessagesToolsSettingsBuilder instance.
Example
@(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 for TransferAllTo
RETURNS
Returns the current ListBoxMessagesToolsSettingsBuilder instance.
Example
@(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 for TransferFrom
RETURNS
Returns the current ListBoxMessagesToolsSettingsBuilder instance.
Example
@(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 for TransferTo
RETURNS
Returns the current ListBoxMessagesToolsSettingsBuilder instance.
Example
@(Html.Kendo().ListBox()
.Name("listBox")
.Messages(m => m.Tools(t=>t.TransferTo("Value")))
)