엑셀/텍스트 로드시 호출되는 이벤트 입니다.
onImportFinish:function(paramObject) {
}
or
sheet.bind("onImportFinish" , function(paramObject) {});
| Name | Type | Description |
|---|---|---|
| sheet | object |
엑셀/텍스트가 로딩 중인 시트 객체 |
| type | string |
텍스트/엑셀 여부(EXCEL, TEXT) |
| data | object |
시트에 로딩될 엑셀/텍스트 데이터 |
| result | number |
로딩 결과 코드0 : 성공음수: 로딩 에러 발생 |
| message | string |
로딩 결과 메세지"": 성공그외: 에러 메세지 |
none
options.Events = {
onImportFinish:function(evtParam){
// sName 열의 값이 "구청앞"인 경우 필터링 결과와 상관없이 화면에 보여줍니다.
// 다른 열의 값에 의해 필터링이 영향을 받을 때 유용합니다.
if (evtParam["type"] == "TEXT") {
document.getElementById("myDiv").innerText = row["type"] + "을 조회하였습니다.";
}
}
}
| product | version | desc |
|---|---|---|
| core | 8.0.0.0 | 기능 추가 |
| core | 8.0.0.26 | result, message 파라미터 추가 |