특정 셀의 Type을 확인합니다.
string getType( row, col );
| Name | Type | Required | Description |
|---|---|---|---|
| row | object |
필수 | 데이터 로우 객체 |
| col | string |
필수 | 열이름 |
string : 셀의 타입 (Text,Int,Float,Date 등)
function cellClick(evt){
if( evt.Col == "EntDate" && sheet.getType( evt.Row , evt.Col ) == "Text"){
$( "#entDate-confirm" ).dialog('open');
}
}
| product | version | desc |
|---|---|---|
| core | 8.0.0.0 | 기능 추가 |