주소록 불러오기 팝압 각 그룹 카운팅 Ajax async 변경
- true -> false로 변경
This commit is contained in:
parent
6174b44242
commit
30d7aac973
@ -6,6 +6,9 @@
|
|||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
var sTime = new Date();
|
||||||
|
console.log("sTime ::: "+sTime);
|
||||||
|
|
||||||
// 주소록 그룹 카운트(전체)
|
// 주소록 그룹 카운트(전체)
|
||||||
getAddrGroupTotCnt();
|
getAddrGroupTotCnt();
|
||||||
|
|
||||||
@ -15,6 +18,9 @@ $(document).ready(function(){
|
|||||||
//주소록 그룹 카운트(자주보내는 번호)
|
//주소록 그룹 카운트(자주보내는 번호)
|
||||||
getAddrGroupBookmarkCnt();
|
getAddrGroupBookmarkCnt();
|
||||||
|
|
||||||
|
var lTime = new Date();
|
||||||
|
console.log("lTime ::: "+lTime);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// 주소록 그룹 카운트(전체)
|
// 주소록 그룹 카운트(전체)
|
||||||
@ -24,7 +30,7 @@ function getAddrGroupTotCnt() {
|
|||||||
url: "/web/addr/selectAddrGroupTotCntAjax.do",
|
url: "/web/addr/selectAddrGroupTotCntAjax.do",
|
||||||
data: {},
|
data: {},
|
||||||
dataType:'json',
|
dataType:'json',
|
||||||
async: true,
|
async: false,
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
if (data.isSuccess) {
|
if (data.isSuccess) {
|
||||||
$("#addrTotCnt").html(numberWithCommas(data.addrTotCnt));
|
$("#addrTotCnt").html(numberWithCommas(data.addrTotCnt));
|
||||||
@ -46,7 +52,7 @@ function getAddrGroupNogrpCnt() {
|
|||||||
url: "/web/addr/selectAddrGroupNogrpCntAjax.do",
|
url: "/web/addr/selectAddrGroupNogrpCntAjax.do",
|
||||||
data: {},
|
data: {},
|
||||||
dataType:'json',
|
dataType:'json',
|
||||||
async: true,
|
async: false,
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
if (data.isSuccess) {
|
if (data.isSuccess) {
|
||||||
$("#nogrpCnt").html(data.nogrpCnt);
|
$("#nogrpCnt").html(data.nogrpCnt);
|
||||||
@ -68,7 +74,7 @@ function getAddrGroupBookmarkCnt() {
|
|||||||
url: "/web/addr/selectAddrGroupBookmarkCntAjax.do",
|
url: "/web/addr/selectAddrGroupBookmarkCntAjax.do",
|
||||||
data: {},
|
data: {},
|
||||||
dataType:'json',
|
dataType:'json',
|
||||||
async: true,
|
async: false,
|
||||||
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