그리드 파일 로드 시작 이벤트이며, 자세한 내용은 샘플 소스를 참조한다.
| Parameters | Type | Description | 
|---|---|---|
| objInst | INSTANCE | 이벤트가 발생한 그리드 오브젝트 | 
| strFileName | STRING | 파일 이름 | 
| Type | Description | 
|---|---|
| void | 
/**
 * 그리드 파일 로드 시작 이벤트
 *
 * @param {Object} objInst 그리드 컴포넌트 인스턴스
 * @param {string} strFileName 파일 이름
 */
function grd_on_fileloadstart(objInst, strFileName)
{
	factory.consoleprint("on_fileloadstart> Start");
	factory.consoleprint("on_fileloadstart> Grid Object Name = " + objInst.getname());
	factory.consoleprint("on_fileloadstart> strFileName = " + strFileName);
}