Value Picker Actions

Value picker actions work with the content of the valuePicker and multiValuePicker components. These components implement the PickerComponent interface.

For example:

<valuePicker id="valuePicker" label="Code">
    <actions>
        <action id="generate" icon="REFRESH"/>
        <action id="valueClear" type="value_clear"/>
    </actions>
</valuePicker>
value picker basic

There are two standard actions in this category.

value_clear

Action class: ValueClearAction

Clears the value of the component.

multi_value_select

Action class: MultiValueSelectAction

For multiValuePicker component, opens a dialog window and sets the list of selected values to the component.

See details in the multiValuePicker section.