SMART datagrid v1.4 > Classes > GridDataSet
row 위치의 데이터행을 수정할 수 있는 상태면 true를 리턴한다.
$('#update').click(function () {
//그리드에서 현재 포커스 된 row의 첫번째 필드를 수정한다.
var rowIndex = grid.focusedRow().dataIndex();
if (dataset.canUpdateRow(rowIndex)) {
ds.updateRow(rowIndex, {
addr: $('#addr').val(),
salary: $('#salary').val(),
name: $('#name').val()
}, true);
}
});