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