Bug Tracker

Ticket #2654 (closed bug: fixed)

Opened 8 months ago

Last modified 8 months ago

Modal UI Dialog covered by its overlay in MSIE 7 while dragging/resizing it

Reported by: anmic Assigned to: scott.gonzalez
Type: bug Priority: major
Milestone: 1.2.4 Component: ui
Version: 1.2.3 Keywords: dialog, modal, zindex, visibility, msie, ie
Cc: Needs: Review

Description

In MSIE 7, I noticed a bug when a modal dialog with an overlay enabled is covered by the overlay during resizing/dragging.

You can use attached file to reproduce this bug (modified ui.dialog.html demo page):

<h2>3. Buttons</h2>
<div class="playground">
	<div id="example3">Please select an option below.</div>
	<br />
	<button onclick="$('#example3').dialog({
		title: 'Are you sure?',
		modal: true,
		overlay: {
      'backgroundColor': 'black',
      'opacity': 0.7
    }
		buttons: {
			'Yes': function() { $(this).dialog('close'); alert('You clicked \'Yes\''); },
			'No': function() { $(this).dialog('close'); alert('You clicked \'No\''); }
		},
		draggable: true,
		resizable: true
	});$(this).hide().next().show();">Create Dialog</button>
	<button onclick="$('#example3').dialog('open')" style="display:none;">Open</button>
	<button onclick="$('#example3').dialog('close')">Close</button>
</div>

Attachments

ui.dialog.html (2.7 kB) - added by anmic 8 months ago.

Change History

Changed 8 months ago by anmic

Changed 8 months ago by scott.gonzalez

  • owner changed from paul to scott.gonzalez
  • status changed from new to assigned

Changed 8 months ago by scott.gonzalez

  • status changed from assigned to closed
  • resolution set to fixed

This was already fixed. Please upgrade to latest SVN. If you continue to have this problem, please reopen this ticket.

Note: See TracTickets for help on using tickets.