Description

입력된 dataRow와 연결된 item이 체크되어있으면 true를 반환한다.

Syntax

function isCheckedRow(dataRow)

Parameters

dataRow
Type: Number
data행의 index

Return value

Type: Boolean
dataRow와 연결된 item이 체크되어있으면 true를 반환한다.

Examples

if (gridView.isCheckedRow(0)) {
    alert("체크");
}