Sha256: 13c04588b1046c16279875c0c60b89dd88a5a700d66c8481ac947815cdd7e707

Contents?: true

Size: 595 Bytes

Versions: 5

Compression:

Stored size: 595 Bytes

Contents

class Marty::Reporting < Netzke::Base
  def configure(c)
    super
    c.items = [
               :report_select,
               :report_form,
              ]
  end

  client_class do |c|
    c.header   = false
    c.layout   = :border
    c.defaults = {body_style: 'padding:0px'}

    c.include :reporting
  end

  component :report_form do |c|
    c.klass  = Marty::ReportForm
    c.flex   = 1
    c.region = :center
  end

  component :report_select do |c|
    c.klass  = Marty::ReportSelect
    c.split  = true
    c.region = :west
    c.width  = 325
  end
end

Reporting = Marty::Reporting

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
marty-2.5.2 app/components/marty/reporting.rb
marty-2.5.1 app/components/marty/reporting.rb
marty-2.5.0 app/components/marty/reporting.rb
marty-2.4.9 app/components/marty/reporting.rb
marty-2.4.8 app/components/marty/reporting.rb