RealGrid2 가이드
이벤트
렌더링 완료 이벤트

onDataLoadComplated 이벤트

renderer가 완료된후 호출되는 이벤트 입니다.

onDataLoadComplated 이벤트는 데이터 조회, 데이터 초기화 완료 후 한번만 발생합니다.

function setGridEvent(){
  gridView.onDataLoadComplated = function(grid){
    alert("onDataLoadComplated 이벤트 발생. 행 수: " + dataProvider.getRowCount())
  }
}