-
Notifications
You must be signed in to change notification settings - Fork 436
Closed
Labels
Milestone
Description
Currently the onClose event runs before the new value is set. There are situations where the user would like to work with the selected value, regardless if Set or Cancel was set. This cannot be done, because in case of a new selection the value is not yet assigned at the time of the onClose event.
Possible solutions:
- Rename the current
onCloseevent toonBeforeClose. Fire a new event namedonCloseafter the value is already set. BRAKES BACKWARD COMPATIBILTY - Create a new event, e.g.
onAfterClose, which runs after the value is set. Naming is not consistent (e.g. withonBeforeShowandonShow).