Ticket #7900 (closed bug: notabug)

Opened 19 months ago

Last modified 19 months ago

Please see the ticket #7856 and reopen it

Reported by: nuxwin Owned by:
Priority: minor Milestone: 1.9.0
Component: ui.button Version: 1.8.16
Keywords: Cc:
Blocking: Blocked by:

Description

Please see the ticket #7856 and reopen it. I open this ticket since I'm not sure you read the already closed one.

Change History

comment:1 Changed 19 months ago by nuxwin

I write the reason here and also my little fix for those that are interested:

The current behavior is bad. When a checkbox is unchecked, it must lose the focus when we move the mouse outside it. The current behavior is really annoying.

Easy fix for now:

<script type="text/javascript">
/*<![CDATA[*/
	$(document).ready(function() {
		$('#checkboxes').buttonset();
		// Fix for http://bugs.jqueryui.com/ticket/7856
		$('[type=checkbox]').change(function() {
			if(!$(this).is(':checked')) {
				$(this).blur();
			}
		});
	});
/*]]>*/
</script>

comment:2 Changed 19 months ago by scott.gonzalez

  • Status changed from new to closed
  • Resolution set to invalid

Please do not file tickets about other tickets.

Note: See TracTickets for help on using tickets.