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