시트에서 사용자의 클릭이나 setAllCheck를 통해
Bool
타입의 열 전체 체크/언체크 완료 시 호출되는 이벤트입니다.
onCheckAllFinish: function(paramObject) {
}
or
sheet.bind("onCheckAllFinish" , function(paramObject) {});
Name | Type | Description |
---|---|---|
sheet | object |
열 전체 체크/언체크가 완료 된 시트 객체 |
col | string |
열 전체 체크/언체크가 완료 된 열이름 |
result | number |
열 전체 체크 여부 (0(false) :언체크 1(true) :체크) |
none
options.Events = {
onCheckAllFinish:function(evtParam){
alert(evtParam.col + "열이 체크(" + evtParam.result + ") 완료되었습니다.");
}
}
product | version | desc |
---|---|---|
core | 8.0.0.8 | 기능 추가 |