Class: VCFB::Component::DateSelect

Inherits:
Base
  • Object
show all
Defined in:
lib/vcfb/component/date_select.rb

Instance Method Summary collapse

Methods inherited from Base

#collection_check_boxes, #collection_radio_buttons

Constructor Details

#initialize(form, method, options = {}, html_options = {}) ⇒ DateSelect

Returns a new instance of DateSelect.



4
5
6
7
8
9
10
11
# File 'lib/vcfb/component/date_select.rb', line 4

def initialize(form, method, options = {}, html_options = {})
  run_callbacks :initialize do
    @form = form
    @method = method
    @options = defined?(TagOptions::Hash) ? TagOptions::Hash.new(options) : options
    @html_options = defined?(TagOptions::Hash) ? TagOptions::Hash.new(html_options) : html_options
  end
end

Instance Method Details

#form_element(options = {}, html_options = {}) ⇒ Object



13
14
15
# File 'lib/vcfb/component/date_select.rb', line 13

def form_element(options = {}, html_options = {})
  date_select(@form.object_name, @method, options, html_options)
end