|  | @@ -237,12 +237,12 @@ $(function() {
 | 
	
		
			
				|  |  |      $('select[curingByCompilation]').on('change', function(e){
 | 
	
		
			
				|  |  |          var compilation=$(this).val();
 | 
	
		
			
				|  |  |          var latestCompilation=$('select[curingByLatestCompilation]').val();
 | 
	
		
			
				|  |  | -        curingByCompilation(compilation,latestCompilation);
 | 
	
		
			
				|  |  | +        refreshCuringPage(compilation,latestCompilation);
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |      $('select[curingByLatestCompilation]').on('change', function(e){
 | 
	
		
			
				|  |  |          var latestCompilation=$(this).val();
 | 
	
		
			
				|  |  |          var compilation=$('select[curingByCompilation]').val();
 | 
	
		
			
				|  |  | -        curingByCompilation(compilation,latestCompilation);
 | 
	
		
			
				|  |  | +        refreshCuringPage(compilation,latestCompilation);
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |      
 | 
	
		
			
				|  |  |      /**
 | 
	
	
		
			
				|  | @@ -252,21 +252,10 @@ $(function() {
 | 
	
		
			
				|  |  |      	var sortField=$(this).attr('data');
 | 
	
		
			
				|  |  |      	var latestCompilation=$('select[curingByLatestCompilation]').val();
 | 
	
		
			
				|  |  |      	var compilation=$('select[curingByCompilation]').val();
 | 
	
		
			
				|  |  | -    	console.log(sortField);
 | 
	
		
			
				|  |  | -    	$.ajax({
 | 
	
		
			
				|  |  | -            cache :false,
 | 
	
		
			
				|  |  | -            type: 'get',
 | 
	
		
			
				|  |  | -            url: '/cloud/curing/ajax/refreshCuringPage?sortField='+sortField+'&compilation='+compilation+'&latestCompilation='+latestCompilation,
 | 
	
		
			
				|  |  | -            dataType: 'json',
 | 
	
		
			
				|  |  | -            success: function(data) {
 | 
	
		
			
				|  |  | -                if (data.status == 1) {
 | 
	
		
			
				|  |  | -                	fnStructureCuringUser(data.curingList);
 | 
	
		
			
				|  |  | -                    fnPage(data.pageData);
 | 
	
		
			
				|  |  | -                } else {
 | 
	
		
			
				|  |  | -                    alert(data.msg);
 | 
	
		
			
				|  |  | -                }
 | 
	
		
			
				|  |  | -            }
 | 
	
		
			
				|  |  | -        })
 | 
	
		
			
				|  |  | +    	
 | 
	
		
			
				|  |  | +    	refreshCuringPage(compilation,latestCompilation,sortField);
 | 
	
		
			
				|  |  | +    	
 | 
	
		
			
				|  |  | +    	
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |      
 | 
	
		
			
				|  |  |      
 |