화면 » Event

on_portletload

Description

포틀릿 화면 로드 완료 이벤트이다. 상세 설명은 샘플 소스를 참조한다.

Parameters

Parameters Type Description
popuportlet_instp_screen INSTANCE 포틀릿 화면 오브젝트
portlet_name STRING 포틀릿 이름(screen.loadportlet API에서 지정한 이름)

Return Value

Type Description
void

Example

/**
 * 포틀릿 화면 로드 완료 이벤트
 * screen.loadportlet API로 지장한 화면에 대한 로드 이벤트
 *
 * @param {Object} portlet_inst 포틀릿 화면 오브젝트
 * @param {string} portlet_name 포틀릿 이름(screen.loadportlet API에서 지정한 이름)
 */
function screen_on_portletload(portlet_inst, portlet_name)
{
	factory.consoleprint("screen_on_portletload> Start");
	factory.consoleprint("screen_on_portletload> popup_screen = " + portlet_inst.getscreenurl());
	factory.consoleprint("screen_on_portletload> portlet_name = " + portlet_name);
}

See Also

on_portletdestroy
on_load

Viewer Ver.

9.1.1.1

Update Date

20230504