<kendo:listBox-toolbar>

Defines the settings for displaying the toolbar of the ListBox. The toolbar allows you to execute a set of predefined actions.By default, the toolbar is not displayed. If the tools array is populated, then the toolbar and the corresponding tools are displayed.

Example

<kendo:listBox>
    <kendo:listBox-toolbar></kendo:listBox-toolbar>
</kendo:listBox>

Configuration Attributes

position java.lang.String

The relative position of the ListBox element at which the toolbar will be displayed. The possible values are "left", "right", "top", and "bottom".

Example

<kendo:listBox-toolbar position="position">
</kendo:listBox-toolbar>

tools java.lang.Object

A collection of tools that are used to interact with the ListBox.The built-in tools are: - "moveUp" - Moves up the selected ListBox items. - "moveDown" - Moves down the selected ListBox items. - "remove" - Removes the selected ListBox items. - "transferTo" - Moves the selected items from the current ListBox to the target that is defined in the connectWith option. - "transferFrom" - Moves the selected items from the ListBox that is defined in the connectWith option to the current ListBox. - "transferAllTo" - Moves all items from the current ListBox to the target that is defined in the connectWith option. - "transferAllFrom" - Moves all items from the ListBox that is defined in the connectWith option to the current ListBox.

Example

<kendo:listBox-toolbar tools="tools">
</kendo:listBox-toolbar>
In this article
Not finding the help you need?