/**
 * 그리드 아이템값 검증 이벤트
 * 그리드 아이템값 검증 필요시(화면의 checktranmapinputdata 함수 호출에 의해서) 이벤트가 발생한다.
 *
 * @param {Object} objInst 그리드 컴포넌트 인스턴스
 * @param {number} nRow 그리드 행 인덱스 (Zero-Based)
 * @param {number} nColumn 그리드 열 인덱스 (Zero-Based)
 * @param {string} strItemText 그리드 아이템 텍스트
 *	
 * @returns {number} 값 유효 유형
 * 	1 - 값이 유효함 (기본값)
 * 	0 - 값이 유효하지 않음
 */
function grd_on_validation(objInst, nRow, nColumn, strItemText)
{
	factory.consoleprint("on_validation> Start");
	factory.consoleprint("on_validation> Grid Object Name = " + objInst.getname());
	factory.consoleprint("on_validation> nRow = " + nRow);
	factory.consoleprint("on_validation> nColumn = " + nColumn);
	factory.consoleprint("on_validation> strItemText = " + strItemText);
	
	return 1;
}