Description

매개변수로 지정된 필드명에 해당하는 필드의 인덱스를 가져온다. 대소문자를 가리지 않는다.

Syntax

function getFieldIndex(fieldName)

Parameters

fieldName
Type: string
필드 이름.

Return value

Type: number
필드 인덱스.

Examples

$("#button1").click(function(){
    alert("field1의 FieldIndex는 " + dataProvider.getFieldIndex("field1") + "입니다.");
})

$("#button2").click(function(){
    alert("field2의 FieldIndex는 " + dataProvider.getFieldIndex("field2") + "입니다.");
})

버튼을 누르면 매개변수로 지정된 필드명이 “field1”인 필드의 인덱스를 반환한다.
버튼을 누르면 매개변수로 지정된 필드명이 “field2”인 필드의 인덱스를 반환한다.