getFieldName
Description
매개변수로 지정된 순서에 해당하는 데이터필드의 이름을 가져온다. 필드명은 대문자로 변경되어 있다. 본래 필드명은 DataProvider getOrgFieldName으로 가져온다.
Syntax
function getFieldName(fieldIndex)
Parameters
fieldIndex
Type: number
필드 인덱스.
Return value
Type: string
필드 이름.
Examples
$("#button1").click(function(){ alert("필드명은 " + dataProvider.getFieldName(0) + "입니다."); }) $("#button2").click(function(){ alert("필드명은 " + dataProvider.getFieldName(1) + "입니다."); })
버튼을 누르면 fieldIndex가 0인 필드의 필드명을 대문자로 반환한다.
버튼을 누르면 fieldIndex가 1인 필드의 필드명을 대문자로 반환한다.