트리뷰 » Event

on_itemchange

Description

트리뷰의 선택아이템 변경시 호출됨

Parameters

Parameters Type Description
objInst INSTANCE 컴포넌트 인스턴스
prev_index short 변경전 아이템 인덱스
curr_index short 변경후 아이템 인덱스

Return Value

Type Description
void 없음

Example

function treeview01_on_itemchange(objInst, prev_index, curr_index)
{
	var msg1 = objInst.getname() + "_on_itemchange : " + prev_index + " => " + curr_index;

	console.log(msg1);
	factory.consoleprint(msg1);
}

Viewer Ver.

9.1.1.1

Update Date

20211104