DateRange component events

You don’t use the mouseReleased event but rather the propertyChange event. It fires anytime a property on that component changes. So for the date range you can do this:if event.propertyName in ["startDate", "endDate"]: # do your code here .....