Docs
API
  • headerCheckBox

    Boolean

    Enabling this property disable sorting for column.

    It is used only for checkbox and select column types.

    Configure as true to display a checkbox below the header text.

    Clicking the checkbox will check/uncheck all records.

    Example

    
    {
      index: 'active',
      resizable: true,
      type: 'checkbox',
      title: 'Active?',
      width: 100,
      headerCheckBox: true
    }
    

    Example

    
    selModel: {
      type: 'rows'
    },
    columns: [{
      type: 'select',
      headerCheckBox: false
    },{
    

    Default

    For checkbox column type

    
    false
    

    For select column type if selModel type is rows

    
    true