SMART datagrid v.1 > Classes > GridHeader

Back  Forward

DataLudi.GridHeader.sortOrderVisible  property

If it is true, you can display sorting order in the sorted column header. 

You can specify whether to display individually through sortOrderVisibility property of each column header. 

Defaults to true.

Getter
function sortOrderVisible(): Boolean
Setter
function setSortOrderVisible(value: Boolean)
Code -1
    grid.setHeader({
        sortOrderVisible: true
    });
    
    // or, by property
    grid.header().setSortOrderVisible(true);    
See Also
sortOrderVisibility
Examples
Column Headers
Column Sorting