
jQuery(document).ready(function($){

	$("#formfieldlist, #activeformfieldlist").sortable({
				connectWith: '.connectedSortable',
				stop: function(event, ui){
					//get the new order
					var order = $('#activeformfieldlist').sortable('toArray');
					
					//set the hidden input to this new data
					$("#kineticContribute-fieldlist").attr("value",order);
				}
			}).disableSelection();

    
    
});


