Docs
API
  • menu

    Mixed

    Enable column menu.

    Screencast

    You can study this section over screencast.

    Example

    
    menu: true,
    

    Example: Custom Default menu

    
    menu: ['size', '-', 'sort', '-', 'columns', '-', 'lock'],
    

    Example: Custom menu

    
    menu: ['columns', '-', {
      text: 'Hi',
      handler: function(){
    	alert('Hi');
      }
    }],
    

    Example: One menu with columns only

    
    menu: 'columns',
    

    Example: One menu with auto sizing items

    
    menu: 'size',
    

    Default

    
    false