Sha256: 485a47ff3c6fd9cd84e062539557c201ccf2903815526734da73c4d4a11f411f

Contents?: true

Size: 481 Bytes

Versions: 16

Compression:

Stored size: 481 Bytes

Contents

require 'marty/notifications/grid_view'

module Marty
  module Notifications
    class Window < Netzke::Window::Base
      def configure(c)
        super

        c.title     = 'Notifications'
        c.modal     = true
        c.items     = [:grid_view]
        c.lazy_loading = true
        c.width = 800
        c.height = 550
      end

      component :grid_view do |c|
        c.klass = Marty::Notifications::GridView
        c.rows_per_page = 30
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
marty-14.3.0 app/components/marty/notifications/window.rb
marty-14.0.0 app/components/marty/notifications/window.rb
marty-13.0.2 app/components/marty/notifications/window.rb
marty-11.0.0 app/components/marty/notifications/window.rb
marty-10.0.3 app/components/marty/notifications/window.rb
marty-10.0.2 app/components/marty/notifications/window.rb
marty-10.0.0 app/components/marty/notifications/window.rb
marty-9.5.1 app/components/marty/notifications/window.rb
marty-9.5.0 app/components/marty/notifications/window.rb
marty-9.3.3 app/components/marty/notifications/window.rb
marty-9.3.2 app/components/marty/notifications/window.rb
marty-9.3.0 app/components/marty/notifications/window.rb
marty-8.5.0 app/components/marty/notifications/window.rb
marty-8.4.1 app/components/marty/notifications/window.rb
marty-8.3.1 app/components/marty/notifications/window.rb
marty-8.2.0 app/components/marty/notifications/window.rb