SMART datagrid v.1 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.alwaysSorting  property

If specify as false, when the value of data field regardless of sorting is changed, it will not run internal sorting. 

Defaults to true.

Getter
function alwaysSorting(): Boolean
Setter
function setAlwaysSorting(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            alwaysSorting: false
        }
    });
Code -2
    grid.setEditOptions({
        alwaysSorting: false
    });
Code -3
    grid.editOptions().setAlwaysSorting(false);
See Also
GridBase.orderBy
GridColumn
DataField
Examples
Column Sorting