grid_header_class

specifies the CSS class that will be applied to the headers of the table's columns

columnNamestringthe column's name (as specified in the "name" property of the column object)
columnobjectcolumn object (as specified in the gantt.config.columns config)

Example

gantt.templates.grid_header_class = function(columnName, column){
    return "";
};

See also
Back to top