﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
10927	When ckeditor is inside a jquery UI dialog, richcombo dropdown panels fail when clicked on to close	Fireballer		"It looks like jQuery UI's dialog steals the mousedown event somehow:
(tested in Chrome)
For example:


{{{
<body>
	<div id=""dialog"">
		<textarea id=""input-ck""></textarea>
	</div>
</body>
}}}

This fails:

{{{
<script>
$(function () {
	$('#dialog').dialog({
		open: function () {
			$('#input-ck').ckeditor();
		},
		width: 1000,
		position: 'center top'
	});
});
</body>
}}}

My workaround (but I have to give up draggable and resizable):

{{{
<script>
$(function () {
	$('#dialog').dialog({
		open: function () {
			$('#input-ck').ckeditor();
			$('div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front').unbind('mousedown');

		},
		width: 1000,
		position: 'center top',
		draggable: false,
		resizable: false
	});
});
</body>
}}}"	Bug	closed	Normal		UI : Toolbar		duplicate		
