간트 그리드의 필드를 새롭게 구성하여 변경합니다.

// 간트 그리드(시트) 에 출력할 칼럼 필드 들 재작성함.
var newColumnLayout = [
        AUIGantt.defaultColumnInfo.index, // 기본 정보 필드
        AUIGantt.defaultColumnInfo.name, // 작업 이름 필드
        AUIGantt.defaultColumnInfo.start, // 작업 시작 날짜 필드
        AUIGantt.defaultColumnInfo.end // 작업 종료 날짜 필드
];
// 중간 보고일 필드 추가
newColumnLayout.push({
	dataField : "rep_date",
	headerText : "중간 보고일",
	width : 100,
	editRenderer : {
		type : "CalendarRenderer",
		defaultFormat : "yyyy-mm-dd",
		showExtraDays : true, 
		onlyCalendar : true
	}
});

// 주어진 칼럼 레이아웃으로 간트 그리드 다시 작성
AUIGantt.remakeGridLayout(myGanttID, newColumnLayout, {
	treeColumnIndex : 1
});