Module: Netzke::Basepack
- Defined in:
- lib/netzke/basepack.rb,
lib/netzke-basepack.rb,
lib/netzke/basepack/panel.rb,
lib/netzke/basepack/window.rb,
lib/netzke/basepack/version.rb,
lib/netzke/basepack/wrapper.rb,
lib/netzke/basepack/auth_app.rb,
lib/netzke/basepack/tab_panel.rb,
lib/netzke/basepack/basic_app.rb,
lib/netzke/basepack/simple_app.rb,
lib/netzke/basepack/grid_panel.rb,
lib/netzke/basepack/form_panel.rb,
lib/netzke/basepack/search_panel.rb,
lib/netzke/basepack/accordion_panel.rb,
lib/netzke/basepack/wrap_lazy_loaded.rb,
lib/netzke/basepack/paging_form_panel.rb,
lib/netzke/basepack/form_panel/fields.rb,
lib/netzke/basepack/grid_panel/columns.rb,
lib/netzke/basepack/border_layout_panel.rb,
lib/netzke/basepack/form_panel/services.rb,
lib/netzke/basepack/grid_panel/services.rb,
lib/netzke/basepack/grid_panel/search_window.rb,
lib/netzke/basepack/grid_panel/multi_edit_form.rb,
lib/netzke/basepack/grid_panel/record_form_window.rb
Defined Under Namespace
Modules: Version, WrapLazyLoaded Classes: AccordionPanel, AuthApp, BasicApp, BorderLayoutPanel, Engine, FormPanel, GridPanel, PagingFormPanel, Panel, SearchPanel, SimpleApp, TabPanel, Window, Wrapper
Class Method Summary (collapse)
-
+ (Object) init
Called from netzke-basepack.rb.
-
+ (Object) setup {|_self| ... }
Use it to confirure Basepack in the initializers, e.g.:.
Class Method Details
+ (Object) init
Called from netzke-basepack.rb
12 13 14 15 16 17 18 |
# File 'lib/netzke/basepack.rb', line 12 def init Netzke::Core.ext_javascripts << "#{File.dirname(__FILE__)}/../../javascripts/basepack.js" Netzke::Core.ext_stylesheets << "#{File.dirname(__FILE__)}/../../stylesheets/basepack.css" Netzke::Core.external_ext_css << "/extjs/examples/ux/gridfilters/css/RangeMenu" Netzke::Core.external_ext_css << "/extjs/examples/ux/gridfilters/css/GridFilters" end |
+ (Object) setup {|_self| ... }
Use it to confirure Basepack in the initializers, e.g.:
Netzke::Basepack.setup do |config|
config.icons_uri = "/images/famfamfam/icons"
end
25 26 27 |
# File 'lib/netzke/basepack.rb', line 25 def setup yield self end |