Skip to content

Commit

Permalink
AXGrid v1.70
Browse files Browse the repository at this point in the history
  emptyList bugfix
  • Loading branch information
thomasJang committed May 19, 2014
1 parent addb52b commit b2adb4a
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions lib/AXGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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
*
Expand Down Expand Up @@ -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));
Expand Down

0 comments on commit b2adb4a

Please sign in to comment.