//jquery easyui 로딩 CSS 효과
함수 ajaxLoading() {
$("
").css({display:"block",width:"100%",height:$( window).height()}).appendTo("body");
$("
").html("처리 중입니다. . ").appendTo("body").css({display:"block",left:($(document.body).outerWidth(true) - 190) / 2,top:($(window). height() - 45) / 2})
}
function ajaxLoadEnd(){
$(".datagrid-mask").remove()
$(".datagrid-mask -msg").remove();
}
$.ajax({
type: 'POST',
url: 'sendLettersAgain.action',
data: { id:obj.id},
beforeSend:ajaxLoading,\요청을 보내기 전에 진행률 표시줄을 엽니다
success: function(robj){
ajaxLoadEnd();\Task 실행이 성공했습니다. 진행률 표시줄을 닫습니다.
}
})