SMART datagrid v1.4 > Classes > EditOptions

[ grids ver.1.3.4]   Back  Forward

DataLudi.EditOptions.pasteByCell  property

true면 여러 셀을 붙여넣기 할 때, updateRow 대신 setValue로 값을 저장한다. 

개별 셀 값이 붙여넣기 될 때마다 onValueChanged 이벤트가 발생한다. 또, updateByCell과 동일한 속성을 지정해서 일관된 UI를 제공할 수 있다. 

기본값은 false.

Getter
function pasteByCell(): Boolean
Setter
function setPasteByCell(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            updateByCell: true,
            pasteByCell: true
        }
    });
Code -2
    grid.setEditOptions({
        updateByCell: true,
        pasteByCell: true
    });
Code -3
    grid.editOptions().setPasteByCell(true);
See Also
updateByCell
pasteCallback
GridDataSet.setValue
TreeDataSet.setValue
onValueChanged
onValueChanged
Examples
클립보드 붙여넣기
클립보드 복사하기