SMART datagrid v.1 > Classes > GridColumn

Back  Forward

DataLudi.GridColumn.displayText  property

If name property value has been set in column, it will return this value, else, it will return ColumnHeader.text property value of header

Getter
function displayText(): String
Note
Code -1
    grid.onCurrentChanged = function (grid, newIndex) {
        var column = newIndex.column();
        $('#span').text(column.displayText());
    };
See Also
name
header
ColumnHeader.text
Examples
Row Grouping