SMART datagrid v1.4 > Classes > GridDataSet
DataLudi.GridDataSet.onRowsMoved event
row 행 위치에서 count 만큼의 행을 newRow 위치로 이동된 후 발생한다.
이동되기 직전에 onRowsMoving 이벤트가 발생한다.
function onRowsMoved (ds: GridDataSet, row: Integer, count: Integer, newRow: Integer);
- Returns
- Void
- Parameters
- ds - GridDataSet.
데이터셋.
- row - Integer.
이동이 시작된 데이행 번호.
- count - Integer.
이동된 행 개수.
- newRow - Integer.
이동된 위치의 행번호.
Code -1
dataset.onRowsMoved = function (ds, row, count, newRow) {
alert(count + "개의 행들이 " + newRow + "의 위치로 이동했습니다.");
}
- See Also
- onRowsMoving
- Examples
- Grid DataSet 수정