$(function(){ new $.module['board.lists'] ( $('form.lists-form'), { 'callback' : function($this){ var th = $('thead th', $this), tbody = $('tbody', $this), sort_save_btn = $('.sort_save_btn', $this); tbody.sortable ( { forcePlaceholderSize : true, placeholder : 'placeholder', items : 'tr', start : function (e, ui) { $('.placeholder', $this).height($(ui.helper).height()); $(ui.helper) .addClass('draging') .children().each ( function(no){ $(this).width(th.eq(no).width()); } ); }, stop : function (e, ui) { $('.draging').removeClass('draging'); } } ); sort_save_btn.on ( 'click', function(){ var target=$(this), url='/eng/sub0301/pm_sort'; target.attr('disabled', true).find('i').show(); $.request ( {'url' : url, 'param' : $this.serialize()}, function(){ $.jGrowl ( 'The order has been updated.', { life : 1000, header : 'SUCCESS', close : function(){ target.attr('disabled', false).find('i').hide(); } } ); } ); } ); $('.change', $this).ui_swap({'Yes' : ["사용", "#18A689"], 'No' : ["미사용", "#f26520"]}); } } ); })