class ActiveAdmin::Views::Column

def build(options = {})

Options Hash: (**options)
  • :span (Integer) -- The columns this column should span

Parameters:
  • options (Hash) -- An options hash for the column
def build(options = {})
  options = options.dup
  @span_size = options.delete(:span) || 1
  @max_width = options.delete(:max_width)
  @min_width = options.delete(:min_width)
  super(options)
end