JavaScript/jQuery List - Selection

User Interaction

To enable selection in the List component, use the selectionMode property to specify the selection mode.

JavaScript
  • $(function() {
  • $("#listContainer").dxList({
  • // ...
  • selectionMode: "single" // or "multiple" | "all" | "none" (disables selection)
  • });
  • });

To select a List item, a user should click or tap it. Selected items become shaded. If you want to indicate selected items, set the showSelectionControls property to true. This setting adds a checkbox to each item on the List. Enable this option if you use the "all" selection mode. Otherwise, the "Select All" checkbox is not shown.

If you want users to select List items only by checking checkboxes, assign false to the selectByClick property.

JavaScript
  • $(function() {
  • $("#listContainer").dxList({
  • // ...
  • showSelectionControls: true
  • });
  • });

When data in the List is paginated, you can choose whether the "Select All" check box will select all items on all pages or items on the currently rendered pages only. To make this choice, specify the selectAllMode property.

JavaScript
  • $(function() {
  • $("#listContainer").dxList({
  • // ...
  • selectAllMode: "allPages" // or "page"
  • });
  • });

View Demo

See Also

API

To configure the initial selection or access the keys of selected items, use the selectedItemKeys collection. Add or remove an item's key from this collection to select the item or cancel its selection:

JavaScript
  • const list = $("#listContainer").dxList("instance");
  • let selectedKeys = list.option("selectedItemKeys");
  • // Selects the item with key 5
  • selectedKeys.push(5);
  • list.option("selectedItemKeys", selectedKeys);
  • // Cancels the selection of the item with key 5
  • selectedKeys = $.grep(selectedKeys, function(key) {
  • return key !== 5;
  • });
  • list.option("selectedItemKeys", selectedKeys);

You can also call the selectItem method to select a List item by index. To unselect an item, call unselectItem.

NOTE
To specify the key field, use the keyExpr property of the List or the key property of the Store.

Implement the onSelectionChanged event handler to perform an action after a user selects items. To cancel selection programmatically, use onSelectionChanging. To see an example, refer to the following demo: List Selection.

See Also

Events

The List UI component fires the selectionChanged event when an item is selected or when the selection is cancelled. The UI component also fires the selectAllValueChanged event when the "Select All" check box has changed its value. If the functions that handle these events are not going to be changed during the lifetime of the UI component, assign them to the corresponding onEventName properties when you configure the UI component.

JavaScript
  • $(function () {
  • $("#listContainer").dxList({
  • // ...
  • onSelectionChanged: function(e) {
  • const addedItems = e.addedItems;
  • const removedItems = e.removedItems;
  • // Handler of the "selectionChanged" event
  • },
  • onSelectAllValueChanged: function(e) {
  • const newCheckBoxValue = e.value;
  • // Handler of the "selectAllValueChanged" event
  • }
  • });
  • });

View Demo

If you are going to change the event handlers at runtime, or if you need to attach several handlers to a single event, subscribe to this event using the on(eventName, eventHandler) method.

JavaScript
  • const selectionChangedEventHandler1 = function(e) {
  • // First handler of the "selectionChanged" event
  • };
  •  
  • const selectionChangedEventHandler2 = function(e) {
  • // Second handler of the "selectionChanged" event
  • };
  •  
  • $("#listContainer").dxList("instance")
  • .on("selectionChanged", selectionChangedEventHandler1)
  • .on("selectionChanged", selectionChangedEventHandler2);
See Also