워크플로우 이벤트 흐름 가이드

이 화면은 워크픞로우 컴포넌트 이벤트 흐름에 대한 샘플 화면이다.

템플릿 위치: /HTML5/COMPONENT/WORKFLOW/workflow_eventflow

템플릿 파일

// 화면 로드 이벤트
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)
{

}

  • guide/component/workflow/workflow_eventflow.txt
  • 마지막으로 수정됨: 2024/10/18 19:21
  • 저자 127.0.0.1