Dropdown List select change?

How to get user change the list event?
When I get script in propertyChange, moveover it ,it also print?

I want to click and select 's event?

You always need to check which property is changed.
As this triggers on many properties.

if event.propertyName == 'value':
2 Likes

if event.propertyName == 'selectedValue':

This is what I want . Thank you!

2 Likes