Scott Baker | 90adeca | 2014-11-06 23:41:32 -0800 | [diff] [blame] | 1 | jQuery(function($) { |
| 2 | $("div.inline-group").sortable({ |
| 3 | axis: 'y', |
| 4 | placeholder: 'ui-state-highlight', |
| 5 | forcePlaceholderSize: 'true', |
| 6 | items: '.row1, .row2', |
| 7 | update: update |
| 8 | }); |
| 9 | $("div.inline-group").disableSelection(); |
| 10 | }); |
| 11 | function update() { |
| 12 | $('.row1, .row2').each(function(i) { |
| 13 | $(this).find('input[id$=order]').val(i+1); |
| 14 | }); |
| 15 | } |
| 16 | jQuery(document).ready(function($){ |
| 17 | // $(this).find('input[id$=order]').parent('div').parent('div').hide().parent().parent().css('cursor','move'); |
| 18 | $(this).find('input[id$=order]').parent('td').hide().parent('tr').parent('tbody').parent('table').find("th:contains('Order')").hide(); |
| 19 | $(this).find('input[id$=order]').parent('td').hide().parent('tr').parent('tbody').parent('table').css('cursor','move'); |
| 20 | $('.add-row a').click(update); |
| 21 | }); |