====== 워크플로우 이벤트 흐름 가이드 ======
이 화면은 워크픞로우 컴포넌트 이벤트 흐름에 대한 샘플 화면이다.
===== 예시 =====
템플릿 위치: /HTML5/COMPONENT/WORKFLOW/workflow_eventflow
템플릿 파일
* [[xf5projecthome>template/screen/HTML5/COMPONENT/WORKFLOW/workflow_eventflow.xml|workflow_eventflow.xml]]
* [[xf5projecthome>template/screen/HTML5/COMPONENT/WORKFLOW/workflow_eventflow.js|workflow_eventflow.js]]
* [[xf5projecthome>template/template.html?xframe_screen_url=/HTML5/COMPONENT/WORKFLOW/workflow_eventflow|새창으로 실행]]
echo '';
echo '';
echo '';
==== 화면 스크립트 ====
// 화면 로드 이벤트
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)
{
}