사용자가 아이템 이름 변경을 완료했을 때 호출됨
Parameters | Type | Description |
---|---|---|
objInst | INSTANCE | 이벤트가 발생한 트리 오브젝트 |
item | long | 아이템 |
strPrevItemText | STRING | 변경전 아이템 텍스트 |
strItemText | STRING | 변경후 아이템 텍스트 |
Type | Description |
---|---|
void |
/**
* 사용자에 의한 트리 아이템 이름 변경 이벤트
*
* @param {Object} objInst 트리 컴포넌트 인스턴스
* @param {Object} item 변경된 아이템
* @param {Object} strPrevItemText 변경전 아이템 텍스트
* @param {Object} strItemText 변경후 아이템 텍스트
*/
function tree_on_userrename(objInst, item, strPrevItemText, strItemText)
{
factory.consoleprint("on_userrename> Start");
factory.consoleprint("on_userrename> Tree Object Name = " + objInst.getname());
factory.consoleprint("on_userrename> item = " + item);
factory.consoleprint("on_userrename> strPrevItemText = " + strPrevItemText);
factory.consoleprint("on_userrename> strItemText = " + strItemText);
}