#6013 closed enhancement (duplicate)
show dialog in the open event
Reported by: | dreamershl | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui.dialog | Version: | 1.8.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If you try to open the same dialog box in the open event, the code will re-invoke itself because the _isOpen is false. Is it better that switch the sequence of these 2 lines
from
self._trigger('open'); self._isOpen = true;
to
self._isOpen = true; self._trigger('open');
Note: See
TracTickets for help on using
tickets.
Duplicate of #6012.