SMART datagrid v.1 > Classes > MaskCellEditor

[ grids ver.1.3.5]   Back  Forward

DataLudi.MaskCellEditor.insertMode  property

If it is false, it will be edited in overwrite mode. 

In other words, it will overwrite the character of existing location with the newly entered character. 

Defaults to true.

Getter
function insertMode(): Boolean
Setter
function setInsertMode(value: Boolean)
Code -1
    grid.setColumns([{
        fieldName: "fld0",
        editor: {
            type: "mask",
            mask: 'LLL-000',
            insertMode: false
        },
        ...
    },
        ...
    ];
See Also
Edit Mask Overview
Examples
Mask Cell Editor