Ignition 8.0.16 - Perspective - onActionPerformed - read the new selected value on dropdown component

Perspective.
For a dropdown component when the action Performed script event is triggered if we read self.props.value we don’t have the new selected value but the old value. Is there a way to obtain the new Value ?

In a change script on props.value, you can read currentValue.value.

The actionPerformed Event fires even on click events, so it’s not accurate if you’re expecting value changes.

1 Like

thanks a lot ! a change script is what I needed