1 ============================================================
2 Feature: #73720 - Trigger event after modal window dismissed
3 ============================================================
8 A new event ``modal-destroyed`` has been added that will be triggered after a modal window closed.
14 Bind to the event ``modal-destroyed`` to achieve custom actions after the modal dismissed.
18 .. code-block:: javascript
20 var $modal = Modal.confirm(); // stub code
21 $modal.on('modal-destroyed', function() {
22 // Reset the selection
23 $someCombobox.val('');