Module: Searchgasm::Helpers::ControlTypes::Select

Defined in:
lib/searchgasm/helpers/control_types/select.rb

Instance Method Summary collapse

Instance Method Details

#order_as_select(options = {}) ⇒ Object

Please see order_as_links. All options are the same and applicable here. The only difference is that instead of a group of links, this gets returned as a select form element that will perform the same function when the value is changed.



12
13
14
15
# File 'lib/searchgasm/helpers/control_types/select.rb', line 12

def order_as_select(options = {})
  add_order_by_select_defaults!(options)
  searchgasm_state_for(:order_as, options) + select(options[:params_scope], :order_as, options[:choices], options[:tag] || {}, options[:html])
end

#order_by_select(options = {}) ⇒ Object

Please see order_by_links. All options are the same and applicable here. The only difference is that instead of a group of links, this gets returned as a select form element that will perform the same function when the value is changed.



6
7
8
9
# File 'lib/searchgasm/helpers/control_types/select.rb', line 6

def order_by_select(options = {})
  add_order_by_select_defaults!(options)
  searchgasm_state_for(:order_by, options) + select(options[:params_scope], :order_by, options[:choices], options[:tag] || {}, options[:html] || {})
end

#page_select(options = {}) ⇒ Object

Please see page_links. All options are the same and applicable here, excep the :prev, :next, :first, and :last options. The only difference is that instead of a group of links, this gets returned as a select form element that will perform the same function when the value is changed.



24
25
26
27
# File 'lib/searchgasm/helpers/control_types/select.rb', line 24

def page_select(options = {})
  add_page_select_defaults!(options)
  searchgasm_state_for(:page, options) + select(options[:params_scope], :page, (options[:first_page]..options[:last_page]), options[:tag] || {}, options[:html])
end

#per_page_select(options = {}) ⇒ Object

Please see per_page_links. All options are the same and applicable here. The only difference is that instead of a group of links, this gets returned as a select form element that will perform the same function when the value is changed.



18
19
20
21
# File 'lib/searchgasm/helpers/control_types/select.rb', line 18

def per_page_select(options = {})
  add_per_page_select_defaults!(options)
  searchgasm_state_for(:per_page, options) + select(options[:params_scope], :per_page, options[:choices], options[:tag] || {}, options[:html])
end