Ticket #7900 (closed bug: notabug)
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
Note: See
TracTickets for help on using
tickets.


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>