NOTE! You are browsing legacy documentation. For latest visit docs.nativescript.org.

NativeScript Core

List Picker

The ListPicker is a spinner type component for listing options.

Usage

The example demonstrates how to set a ListPicker in XML page, how to bind its selectedIndex property and to handle its change.

<ListPicker items="{{ years }}" selectedIndex="0" loaded="onListPickerLoaded" />

Styling

<ListPicker items="{{ items }}" class="picker"/>

Tips And Tricks

Using key-value pairs

This functionality provides a simple way to specify the text field, which will be displayed in the ListPicker and the value field which will be returned as a result. In this scenario, when we are setting JSON object to the ListPicker's source, we should set up the textField and valueField properties, which will specify the displayed and result values. In the example below we are setting textField to name and valueField to role. This means that all properties marked as name will be displayed in the component and as a result, we will receive their corresponding role. We are receiving the selected value via selectedValue property, which can also be accessed via code-behind.

<ListPicker 
    loaded="onListPickerLoaded"
    items="{{ items }}"
    textField="name"
    valueField="role"
    selectedIndex="{{ index }}"
    selectedValue="{{ selectedItem }}">
</ListPicker>

Creating ListPicker via Code-Behind

Creating a ListPicker programmatically while setting items source and default selected index.

const ListPicker = require("tns-core-modules/ui/list-picker").ListPicker;


function onNavigatingTo(args) {
    const page = args.object;
    const container = page.getViewById("container");

    const listPicker = new ListPicker();
    listPicker.items = [
        "NativeScript Core - JavaScript",
        "NativeScript Core - TypeScript",
        "NativeScript Angular",
        "NativeScript Vue",
        "NativeScript Code Sharing",
        "NativeScript Sidekick"
    ];
    listPicker.selectedIndex = 0;

    container.addChild(listPicker);
}
exports.onNavigatingTo = onNavigatingTo;

Properties

Name Type Description
items Array<any> Gets or set the items collection of the ListPicker. The items property can be set to an array or an object defining length and getItem(index) method.
selectedIndex number Gets or set the items collection of the ListPicker. The items property can be set to an array or an object defining length and getItem(index) method.

Events

Name Description
selectedIndexChange Emitted when the selectedIndex is changed.

API References

Name Type
tns-core-modules/ui/list-picker Module
ListPicker Class

Native Component

Android iOS
android.widget.NumberPicker UIPickerView