Changes between Initial Version and Version 4 of Ticket #5649
- Timestamp:
- Oct 22, 2012, 8:00:49 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5649
- Property Keywords reuse coupling removed
-
Property
Status
changed from
new
toopen
-
Property
Summary
changed from
overlay reuse coupling problem
toDialog: multiple modal dialog zindex conflicts
-
Property
Milestone
changed from
TBD
to1.10.0
-
Ticket #5649 – Description
initial v4 1 1 Look at the following code in the ui.dialog file: 2 $(document).bind($.ui.dialog.overlay.events, function(event) { 2 3 {{{ 4 $(document).bind($.ui.dialog.overlay.events, function(event) { 3 5 // stop events if the z-index of the target is < the z-index of the overlay 4 6 return ($(event.target).zIndex() >= $.ui.dialog.overlay.maxZ); 5 7 }); 8 }}} 6 9 7 10 The value of '$.ui.dialog.overlay.maxZ' will be changed if a second modal dialog opend and this will cause the events handler return false. For example, if you click a radio on the first dialog to open a new second dialog, this raido will never be checked.