PickList

PickList is used to reorder items between different lists.


import { PickListModule } from 'primeng/picklist';

PickList is used as a controlled input with source and target properties. Content of a list item needs to be defined with the pTemplate property that receives an object in the list as parameter. Drag & drop functionality depends on @angular/cdk package.

Available
  • {item.name}
    Bamboo Watch
    Accessories
    $65
  • {item.name}
    Black Watch
    Accessories
    $72
  • {item.name}
    Blue Band
    Fitness
    $79
  • {item.name}
    Blue T-Shirt
    Clothing
    $29
  • {item.name}
    Bracelet
    Accessories
    $15
  • {item.name}
    Brown Purse
    Accessories
    $120
  • {item.name}
    Chakra Bracelet
    Accessories
    $32
  • {item.name}
    Galaxy Earrings
    Accessories
    $34
  • {item.name}
    Game Controller
    Electronics
    $99
  • {item.name}
    Gaming Set
    Electronics
    $299
Selected

<p-pickList [source]="sourceProducts" [target]="targetProducts" sourceHeader="Available" targetHeader="Selected" [dragdrop]="true" [responsive]="true" 
    [sourceStyle]="{ height: '30rem' }" [targetStyle]="{ height: '30rem' }" breakpoint="1400px">
    <ng-template let-product pTemplate="item">
        <div class="flex flex-wrap p-2 align-items-center gap-3">
            <img class="w-4rem shadow-2 flex-shrink-0 border-round" src="https://primefaces.org/cdn/primeng/images/demo/product/{{ product.image }}" alt="{item.name}" />
            <div class="flex-1 flex flex-column gap-2">
                <span class="font-bold">{{ product.name }}</span>
                <div class="flex align-items-center gap-2">
                    <i class="pi pi-tag text-sm"></i>
                    <span>{{ product.category }}</span>
                </div>
            </div>
            <span class="font-bold text-900">{{ '$' + product.price }}</span>
        </div>
    </ng-template>
</p-pickList>

Filter value is checked against the property of an object configured with the filterBy property.

Available
  • {item.name}
    Bamboo Watch
    Accessories
    $65
  • {item.name}
    Black Watch
    Accessories
    $72
  • {item.name}
    Blue Band
    Fitness
    $79
  • {item.name}
    Blue T-Shirt
    Clothing
    $29
  • {item.name}
    Bracelet
    Accessories
    $15
  • {item.name}
    Brown Purse
    Accessories
    $120
  • {item.name}
    Chakra Bracelet
    Accessories
    $32
  • {item.name}
    Galaxy Earrings
    Accessories
    $34
  • {item.name}
    Game Controller
    Electronics
    $99
  • {item.name}
    Gaming Set
    Electronics
    $299
Selected

<p-pickList [source]="sourceProducts" [target]="targetProducts" sourceHeader="Available" targetHeader="Selected" [dragdrop]="true" [responsive]="true" [sourceStyle]="{ height: '30rem' }"
    [targetStyle]="{ height: '30rem' }" filterBy="name" sourceFilterPlaceholder="Search by name" targetFilterPlaceholder="Search by name" breakpoint="1400px">
    <ng-template let-product pTemplate="item">
        <div class="flex flex-wrap p-2 align-items-center gap-3">
            <img class="w-4rem shadow-2 flex-shrink-0 border-round" src="https://primefaces.org/cdn/primeng/images/demo/product/{{ product.image }}" alt="{item.name}" />
            <div class="flex-1 flex flex-column gap-2">
                <span class="font-bold">{{ product.name }}</span>
                <div class="flex align-products-center gap-2">
                    <i class="pi pi-tag text-sm"></i>
                    <span>{{ product.category }}</span>
                </div>
            </div>
            <span class="font-bold text-900">{{ '$' + product.price }}</span>
        </div>
    </ng-template>
</p-pickList>

Following is the list of structural style classes, for theming classes visit theming page.

NameElement
p-picklistContainer element.
p-picklist-source-controlsContainer of source list buttons.
p-picklist-target-controlsContainer of target list buttons.
p-picklist-buttonsContainer of buttons.
p-picklist-listList element.
p-picklist-itemAn item in the list.

Screen Reader

Value to describe the source listbox and target listbox can be provided with ariaLabelledBy or ariaLabel props. The list elements has a listbox role with the aria-multiselectable attribute. Each list item has an option role with aria-selected and aria-disabled as their attributes.

Controls buttons are button elements with an aria-label that refers to the aria.moveTop, aria.moveUp, aria.moveDown, aria.moveBottom,aria.moveTo, aria.moveAllTo, aria.moveFrom and aria.moveAllFrom properties of the locale API by default, alternatively you may usemoveTopButtonProps, moveUpButtonProps, moveDownButtonProps, moveToButtonProps, moveAllToButtonProps, moveFromButtonProps, moveFromButtonProps and moveAllFromButtonProps to customize the buttons like overriding the default aria-label attributes.


<span id="lb">Options</span>        
<p-pickList ariaLabelledBy="lb"></p-pickList>

<p-pickList ariaLabel="City"></p-pickList>

PickList Keyboard Support

KeyFunction
tabMoves focus to the first selected option, if there is none then first option receives the focus.
up arrowMoves focus to the previous option.
down arrowMoves focus to the next option.
enterToggles the selected state of the focused option.
spaceToggles the selected state of the focused option.
homeMoves focus to the first option.
endMoves focus to the last option.
shift + down arrowMoves focus to the next option and toggles the selection state.
shift + up arrowMoves focus to the previous option and toggles the selection state.
shift + spaceSelects the items between the most recently selected option and the focused option.
control + shift + homeSelects the focused options and all the options up to the first one.
control + shift + endSelects the focused options and all the options down to the first one.
control + aSelects all options.

Buttons Keyboard Support

KeyFunction
enterExecutes button action.
spaceExecutes button action.