Description

지정된 dataRow를 newRow로 지정된 dataRow앞으로 이동한다.

Syntax

function moveRow(row, newRow)

Parameters

row
Type: number
이동시키려는 dataRow를 지정한다.

newRow
Type: number
이동될 dataRow를 지정한다.

Return value

None.

Examples

$("#button1").click(function(){
    dataProvider.moveRow(1,0);
})

버튼을 누르면 2행의 정보를 1행의 앞으로 이동한다.