워크플로우 이벤트 흐름 가이드
이 화면은 워크픞로우 컴포넌트 이벤트 흐름에 대한 샘플 화면이다.
예시
템플릿 위치: /HTML5/COMPONENT/WORKFLOW/workflow_eventflow
템플릿 파일
화면 스크립트
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
// 화면 로드 이벤트 function screen_on_load() { } // "startworkflow API 호출" 버튼 이벤트 function btn_startworkflow_on_click(objInst) { this .wf_event.startworkflow(); } function wf_event_on_beforeworkflow(objInst) { return 1; } function wf_event_on_workflowcomplete(objInst, result, result_msg) { } function wf_event_on_beforework(objInst, workindex) { } function wf_event_on_workcomplete(objInst, workindex) { } function wf_event_on_beforesubmit(objInst, workindex, mapid) { } function wf_event_on_submitcomplete(objInst, workindex, mapid, result, recv_userheader, recv_code, recv_msg) { } function screen_on_beforesubmit(mapid, basync) { return 1; } function screen_on_submitcomplete(mapid, result, recv_userheader, recv_code, recv_msg) { } |