Docs
API
  • items

    Array

    Is used only for action column type.

    Main purpose to generate button(s) inside of cell with handler and style if needed.

    Examples

    Handler

    
    items: [{
      text: 'Delete',
      cls: 'action-column-remove',
      handler: function(grid, o){
        grid.remove(o);
      }
    }]
    

    Example

    Action

    
    items: [{
      text: 'Delete',
      cls: 'action-column-remove',
      action: 'remove'
    }]
    

    Default

    
    undefined