Sha256: 38f617892f0fbfb7d62336d02c940a7f66552331be362d390990dd7a316acd1d

Contents?: true

Size: 569 Bytes

Versions: 51

Compression:

Stored size: 569 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

51 entries across 51 versions & 1 rubygems

Version Path
marty-14.3.0 app/components/marty/reporting.rb
marty-14.0.0 app/components/marty/reporting.rb
marty-13.0.2 app/components/marty/reporting.rb
marty-11.0.0 app/components/marty/reporting.rb
marty-10.0.3 app/components/marty/reporting.rb
marty-10.0.2 app/components/marty/reporting.rb
marty-10.0.0 app/components/marty/reporting.rb
marty-9.5.1 app/components/marty/reporting.rb
marty-9.5.0 app/components/marty/reporting.rb
marty-9.3.3 app/components/marty/reporting.rb
marty-9.3.2 app/components/marty/reporting.rb
marty-9.3.0 app/components/marty/reporting.rb
marty-8.5.0 app/components/marty/reporting.rb
marty-8.4.1 app/components/marty/reporting.rb
marty-8.3.1 app/components/marty/reporting.rb
marty-8.2.0 app/components/marty/reporting.rb
marty-8.0.0 app/components/marty/reporting.rb
marty-6.1.0 app/components/marty/reporting.rb
marty-5.2.0 app/components/marty/reporting.rb
marty-5.1.4 app/components/marty/reporting.rb