Search and Top Navigation
#3466 closed bug (fixed)
Opened September 26, 2008 12:24AM UTC
Closed November 03, 2008 02:58PM UTC
Last modified October 11, 2012 09:15PM UTC
sortable with default radio (prev ticket 2930)
Reported by: | jasonaward | Owned by: | paul |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui.sortable | Version: | 1.6rc2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Bug 2930 doesn't appear to be completely fixed. I am seeing it in 1.6rc2 as well as the latest SVN version. Here's the code I'm using:
<html> <head> <script type="text/javascript" src="/jquery/jquery.min.js"></script> <script type="text/javascript" src="/jquery/ui/ui.core.js"></script> <script type="text/javascript" src="/jquery/ui/ui.draggable.js"></script> <script type="text/javascript" src="/jquery/ui/ui.droppable.js"></script> <script type="text/javascript" src="/jquery/ui/ui.sortable.js"></script> <script type="text/javascript"> $(window).bind('load', function() { $('ul#attributes').sortable( { items: 'li' } ); }); </script> </head> <body> <ul id="attributes"> <li> Attribute 1 - mandatory: <input type="radio" value="true" name="attribute_1.mandatory" checked="checked"/>Yes <input type="radio" value="false" name="attribute_1.mandatory"/>No </li> <li> Attribute 2 - mandatory: <input type="radio" value="true" name="attribute_2.mandatory" checked="checked"/>Yes <input type="radio" value="false" name="attribute_2.mandatory"/>No </li> </ul> </body> </html>
If you need additional information, please let me know.
Fixed in r859.