Docs
API
  • headerCellTip

    Mixed

    Header cell tooltip.

    It's value is template.

    false

    Example

    
    ...
    columns: [{
      type: 'number',
      width: 75,  
      align: 'center',
      cellAlign: 'center',
      headerCellTip: '{title}'
    },{
    ...
    

    Example

    
    ...
    columns: [{
      type: 'number',
      width: 75,  
      align: 'center',
      cellAlign: 'center',
      cellTip: function(o){
        if(!o.column.title){
          return false;
        }
        
        return o.column.title;
      }
    },{
    ...
    
    If headerCellTip is function that it should return cell tip text, if it returns false than tip will not be shown.

    There are several predefined template variables,
    others are data values.

    columnIndex

    Number

    Column order index

    title

    String

    Column title

    side

    String

    Side of column: left, center, right

    Default

    
    undefined