Kendo UI for jQuery ListBox Overview

The ListBox provides suggestions depending on the typed text and allows multiple value entries.

The widget displays a list of data that is contained in a box and allows single or multiple selection, reordering of selected items, and deleting items and features keyboard navigation as well as the dragging and dropping of items. You can also connect the ListBox with another list-box and customize the widget with the use of templates, toolbar positioning, placeholder and hint, and localization of its command buttons messages.

Kendo UI for jQuery Kendoka image

The ListBox is part of Kendo UI for jQuery, a professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

Initializing the ListBox

To create a Kendo UI ListBox, use a select HTML element and supply the configuration settings in the initialization script. Alternatively, you can use the declarative approach which conforms to the convention of initializing Kendo UI widgets with data attributes.

<!-- Add the select HTML element that is going to hold the Kendo UI ListBox widget -->
<select id="optional">
    <option>Steven White</option>
    <option>Nancy King</option>
    <option>Nancy Davolio</option>
</select>

If a data source is not provided in its configuration settings, the ListBox will use the options from the HTML elements as its data source. You can configure the widget for remote operations.

For more information, refer to the articles on:

Functionality and Features

See Also

In this article