onAfterRowMove (event)

같은 시트 내에 행 이동 시 호출되는 이벤트입니다.
드래그 앤 드랍, moveRow메소드 사용시 호출됩니다.

Syntax

    onAfterRowMove : function(paramObject) {

    }
or
    sheet.bind("onAfterRowMove" , function(paramObject) {});

Parameters

Name Type Description
sheet object 이동할 행이 위치한 시트 객체
row object 이동할 행의 데이터 로우 객체
oldparent object 이동할 행의 부모 객체(데이터 로우 객체 또는 페이지 객체)
oldnext object 이동할 행의 다음 행의 데이터 로우 객체

Return

number

Example

options.Events = {
    onAfterRowMove:function(evtParam){
        alert(evtParam.row.id + "행을 옮깁니다.");
    }
}

Read More

Since

product version desc
core 8.0.0.0 기능 추가