SMART datagrid v.1 > Classes > DataColumn

[ grids ver.1.3.0]   Back  Forward

DataLudi.DataColumn.erasable  property

When remove the value of selection area through GridBase.eraseSelection, the columns of which property is false will be excluded. 

Defaults to true.

Getter
function erasable(): Boolean
Setter
function setErasable(value: Boolean)
Code -1
    grid.columnByName('id').setErasalbe(false);
    
    $('#clearSelection').click(function () {
        grid.eraseSelection();
    });
See Also
eraseSelection
Examples
Undo & Redo