이벤트 활용방법


컨트롤 동작별 이벤트를 정의하고 활용 합니다.

// 컨트롤 이벤트 리스너
innorix.event = {
    loadComplete    : function(controlId, param) { // 컨트롤 로딩 완료
        console.log("로딩이 완료 되었습니다.");
    },
    uploadCancel    : function(controlId, param) { // 업로드 취소
        console.log("전송을 취소 하였습니다.");
    },
    beforeAddFile   : function(controlId, param) { // 파일 추가 전
        console.log("파일 추가전 이벤트 입니다. ");
        return true; // true 리턴시 파일 추가, false 리턴시 제외
    },
    uploadComplete  : function(controlId, param) { // 업로드 완료
        console.log("전송이 완료 되었습니다.");
    }
}