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.
3 Likes
thanks a lot ! a change script is what I needed