소팅이 이루어진 후 호출되는 이벤트입니다.
onAfterSort:function(paramObject) {
}
or
sheet.bind("onAfterSort" , function(paramObject) {});
Name | Type | Description |
---|---|---|
sheet | object |
소팅이 실행된 시트 객체 |
none
options.Events = {
onAfterSort:function(evtParam){
// 모든 정렬이 다 끝난 후 호출되기에 여기서 상태 메시지를 띄운다.
alert("정렬이 완료되었습니다.");
}
}
product | version | desc |
---|---|---|
core | 8.0.0.0 | 기능 추가 |