트리뷰의 선택아이템 변경시 호출됨
Parameters | Type | Description |
---|---|---|
objInst | INSTANCE | 컴포넌트 인스턴스 |
prev_index | short | 변경전 아이템 인덱스 |
curr_index | short | 변경후 아이템 인덱스 |
Type | Description |
---|---|
void | 없음 |
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);
}