SMART datagrid v1.4 >  Classes >  GridDataSet
DataLudi.GridDataSet.onRowsInserted  event
insertRows 등으로, row 행 위치에서 부터 count 만큼의 행들이 추가된 후 발생한다. 
행들이 추가되기 전에는 onRowsInserting이 발생하고, 이 이벤트가 발생한 후 onRowCountChanged 이벤트가 발생한다. 
function onRowsInserted (ds: GridDataSet, row: Integer, count: Integer);
- Returns
 - Void
 
- Parameters
 - ds - GridDataSet.
데이터셋.
 - row - Integer.
추가가 시작된 데이행 번호.
Undo 시 발생할 때는 이 매개변수에 이 전에 삭제된 행들의 목록이 넘어온다.
 - count - Integer.
추가된 행 개수.
Undo 시 발생할 때는 이 값이 설정되지 않는다.
 
Code -1
    dataset.onRowsInserted = function (ds, row, count) {
        alert(count + "개 행들이 추가되었습니다.");
    }
- See Also
 - onRowCountChanged
 - insertRows
 - onRowsInserting
 - onRowInserted
 
- Examples
 - Grid DataSet 수정