그리드 정렬 컬럼별 옵션 가이드

그리드 정렬시 컬럼별 옵션에 대한 예시 화면이다.

컬럼별 정렬 옵션으로 헤더 클릭시 정렬 여부, 정렬시 정렬 기준 컬럼 정보, 정렬시 정렬 데이터 형식 등이 있다.

관련 데이터부 속성으로 sorting, sort_datatype, sort_func이 있다.

관련 API로 getcolumnsorting, setcolumnsorting가 있다.

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

템플릿 파일

// "setcolumnsorting" 버튼 이벤트
function btn_setcolumnsorting_on_click(objInst)
{
	// 1번째 컬럼 정렬 가능 여부 토글 처리
	this.grd.setcolumnsorting(1, !this.grd.getcolumnsorting(1));
	if (this.grd.getcolumnsorting(1)) {
		this.grd.setheadertext(1, 1, "true");
	}
	else {
		this.grd.setheadertext(1, 1, "false");
	}
}

  • guide/component/grid/grid_sort_column.txt
  • 마지막으로 수정됨: 2023/12/13 18:43
  • 저자 127.0.0.1