Description

사용자가 여러 행을 붙여넣기 했을 때 발생한다.

Syntax

function onRowsPasted (grid, items)

Arguments

grid
Type: GridBase
GridBase 컨트롤

items
Type: array of number
붙여넣기된 행들의 itemIndex

Return

None.

Examples

gridView.onRowsPasted =  function (grid, items) {
    alert("붙여넣기된 행들 : " + items);
};