시트에 새로운 열이 추가되어 렌더링된 후 호출되는 이벤트입니다.
onAfterColAdd : function(paramObject) {
}
or
sheet.bind("onAfterColAdd" , function(paramObject) {});
Name | Type | Description |
---|---|---|
sheet | object |
시트 객체 |
col | string |
시트에 추가된 열이름 |
none
options.Events = {
onAfterColAdd:function(evtParam){
console.log(evtParam.col);
}
}
product | version | desc |
---|---|---|
core | 8.2.0.12 | 기능 추가 |