트리그리드 정렬 대상 행 가이드

트리 그리드의 정렬 대상 행 관련 기능에 대한 예시 화면이다.

트리 그리드의 행은 자식인 있는 행과 자식이 없는 행(Leaf-Row)로 구분된다.

트리 그리드의 정렬시 전체 행을 Depth 정보를 기준으로 모두 정렬을 수행할 지, 자식인 없는 행만 정렬을 수행할 지 지정 기능을 제공한다.

관련 속성으로 treegrid_sort_target이 있다.

관련 API로 get/settreegridsorttarget, get/settreegridsorttarget이 있다.

관련 실행파라미터로 TREEGRID_SORT_TARGET이 있다.

템플릿 위치: /HTML5/COMPONENT/GRID/grid_sort_treegrid

템플릿 파일

// "Leaf Row" 라디오버튼 이벤트
function rdoLeafRow_on_click(objInst, bPrevCheckState, bCurCheckState)
{
	this.grdList.settreegridsorttarget(1);
}

// "All Row" 라디오버튼 이벤트
function rdoAllRow_on_click(objInst, bPrevCheckState, bCurCheckState)
{
	this.grdList.settreegridsorttarget(2);
}

  • guide/component/grid/grid_sort_treegrid.txt
  • 마지막으로 수정됨: 2023/12/13 17:03
  • 저자 127.0.0.1