SMART datagrid v1.4 > Classes > EditOptions
true면 여러 셀을 붙여넣기 할 때, updateRow 대신 setValue로 값을 저장한다. 
개별 셀 값이 붙여넣기 될 때마다 onValueChanged 이벤트가 발생한다. 또, updateByCell과 동일한 속성을 지정해서 일관된 UI를 제공할 수 있다.
기본값은 false.
    grid.setOptions({
        edit: {
            updateByCell: true,
            pasteByCell: true
        }
    });
    grid.setEditOptions({
        updateByCell: true,
        pasteByCell: true
    });
    grid.editOptions().setPasteByCell(true);