Search.../

selectedIndices

Sets or gets the indices of the selected options.

Description

Setting the selectedIndices property sets the options at each specified index to be a selected option. To reset the selection tags to have no option selected, set the selectedIndices property to an empty array, null, or undefined.

Getting the selectedIndices property returns an array of the indices of all selected options. If no value is selected, the selectedIndices property returns an empty array.

Type:

Array<number>Read & Write

Was this helpful?

Get the selected indices of selection tags

Copy Code
1let selectedIndices = $w("#mySelectionTags").selectedIndices; // [0,2]
Set the selected indices of selection tags

Copy Code
1$w("#mySelectedTags").selectedIndices = [0,2];