diff --git a/lib/AXGrid.js b/lib/AXGrid.js index b227e85f..b059af08 100644 --- a/lib/AXGrid.js +++ b/lib/AXGrid.js @@ -2,7 +2,7 @@ * AXGrid * @class AXGrid * @extends AXJ - * @version v1.69 + * @version v1.70 * @author tom@axisj.com * @logs "2012-12-24 오전 11:51:26", @@ -68,7 +68,8 @@ "2014-05-16 tom : 대용량 데이터 출력 지원에 따른 printList 출력방식 변경에 따른 구조변경/ setStatus 리사이즈후 문구 픽스", "2014-05-17 tom : 대용량 데이터 처리 후 모바일 터치 버그 픽스", "2014-05-18 tom : 스크롤바 마우스 클릭이동 액션 핸들이동 완료후 컨텐츠 이동 하도록 변경", - "2014-05-18 tom : 세로축 스크롤바 이동시 위치 정보 표시 추가" + "2014-05-18 tom : 세로축 스크롤바 이동시 위치 정보 표시 추가", + "2014-05-19 tom : list empty bug fix" * @description * @@ -3016,6 +3017,16 @@ AXGrid = Class.create(AXJ, { // 스크롤 y 포지션 초기화 this.scrollContent.css({ top: 0 }); this.contentScrollContentSync({ top: 0 }); + }else{ + this.virtualScroll = { + startIndex : 0, + endIndex : 0, + itemTrHeight: 0, + printListCount: 0, + scrollTop: 0 + }; + this.scrollContent.css({ top: 0 }); + this.contentScrollContentSync({ top: 0 }); } this.body.find(".gridBodyTr").bind("mouseover", this.gridBodyOver.bind(this));