SMART datagrid v1.4 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.insertable  property

이 값이 true이고 readOnlyfalse이면 사용자가 행을 삽입할 수 있다. 

기본값은 false.

Getter
function insertable(): Boolean
Setter
function setInsertable(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            insertable: true,
            insertByCell: true
        }
    });
Code -2
    grid.setEditOptions({
        insertable: true,
        insertByCell: true
    });
Code -3
    grid.editOptions().setInsertable(true);
See Also
readOnly
appendable
updatable
deletable
셀 편집 개요
Examples
셀 편집
Row Inserting