SMART datagrid v1.4 > Classes > CellIndex
이 위치의 그리드행 객체를 리턴한다.
column이 타당한 컬럼 객체를 지시하고 있다면, 매개변수 grid는 지정하지 않아도 된다.
$('#expand').click(function () {
var row = grid.focusedIndex().getRow();
if (row instanceof GroupRow) {
row.expand();
}
}