module Effective::FormBuilderInputs

Public Instance Methods

effective_ckeditor_text_area(method, options_tag = nil, options = {}, html_options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 3
def effective_ckeditor_text_area(method, options_tag = nil, options = {}, html_options = {})
  EffectiveCkeditorTextArea.new(@object, @object_name, @template, method, options, html_options).to_html
end
effective_date_picker(method, options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 11
def effective_date_picker(method, options = {})
  EffectiveDatePicker.new(@object, @object_name, @template, method, options, options).to_html
end
effective_date_time_picker(method, options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 7
def effective_date_time_picker(method, options = {})
  EffectiveDateTimePicker.new(@object, @object_name, @template, method, options, options).to_html
end
effective_panel_select(method, options_tag = nil, options = {}, html_options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 15
def effective_panel_select(method, options_tag = nil, options = {}, html_options = {})
  options[:collection] = options_tag
  EffectivePanelSelect.new(@object, @object_name, @template, method, options, html_options).to_html
end
effective_price(method, options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 20
def effective_price(method, options = {})
  EffectivePrice.new(@object, @object_name, @template, method, options, options).to_html
end
effective_radio_buttons(method, options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 24
def effective_radio_buttons(method, options = {})
  EffectiveRadioButtons.new(@object, @object_name, @template, method, options, options).to_html
end
effective_select(method, options_tag = nil, options = {}, html_options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 32
def effective_select(method, options_tag = nil, options = {}, html_options = {})
  options[:collection] = options_tag
  EffectiveSelect.new(@object, @object_name, @template, method, options, html_options).to_html
end
effective_static_control(method, options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 28
def effective_static_control(method, options = {})
  EffectiveStaticControl.new(@object, @object_name, @template, method, options, options).to_html
end
effective_tel(method, options_tag = nil, options = {}, html_options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 37
def effective_tel(method, options_tag = nil, options = {}, html_options = {})
  EffectiveTel.new(@object, @object_name, @template, method, options, html_options).to_html
end
effective_time_picker(method, options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 41
def effective_time_picker(method, options = {})
  EffectiveTimePicker.new(@object, @object_name, @template, method, options, options).to_html
end
effective_url(method, options_tag = nil, options = {}, html_options = {}) click to toggle source
# File lib/effective_form_inputs/form_builder_inputs.rb, line 45
def effective_url(method, options_tag = nil, options = {}, html_options = {})
  EffectiveUrl.new(@object, @object_name, @template, method, options, html_options).to_html
end