주소록 그룹 Ajax 비동기 방식으로 다시 원복
This commit is contained in:
parent
30d7aac973
commit
82e048d30a
@ -30,7 +30,7 @@ function getAddrGroupTotCnt() {
|
||||
url: "/web/addr/selectAddrGroupTotCntAjax.do",
|
||||
data: {},
|
||||
dataType:'json',
|
||||
async: false,
|
||||
async: true,
|
||||
success: function (data) {
|
||||
if (data.isSuccess) {
|
||||
$("#addrTotCnt").html(numberWithCommas(data.addrTotCnt));
|
||||
@ -52,7 +52,7 @@ function getAddrGroupNogrpCnt() {
|
||||
url: "/web/addr/selectAddrGroupNogrpCntAjax.do",
|
||||
data: {},
|
||||
dataType:'json',
|
||||
async: false,
|
||||
async: true,
|
||||
success: function (data) {
|
||||
if (data.isSuccess) {
|
||||
$("#nogrpCnt").html(data.nogrpCnt);
|
||||
@ -74,7 +74,7 @@ function getAddrGroupBookmarkCnt() {
|
||||
url: "/web/addr/selectAddrGroupBookmarkCntAjax.do",
|
||||
data: {},
|
||||
dataType:'json',
|
||||
async: false,
|
||||
async: true,
|
||||
success: function (data) {
|
||||
if (data.isSuccess) {
|
||||
$("#bookmarkCnt").html(data.bookmarkCnt);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user