Module: RightRails::Helpers::Forms::FormBuilderMethods
- Defined in:
- lib/right_rails/helpers/forms.rb
Overview
The ActiveView native form-builder extensions
Instance Method Summary collapse
- #autocomplete_field(name, options = {}) ⇒ Object
- #calendar_field(name, options = {}) ⇒ Object
- #colorpicker_field(name, options = {}) ⇒ Object
- #rater(name, options = {}) ⇒ Object
- #rte_field(name, options = {}) ⇒ Object
- #slider(name, options = {}) ⇒ Object
- #tags_field(name, options = {}) ⇒ Object
Instance Method Details
#autocomplete_field(name, options = {}) ⇒ Object
283 284 285 |
# File 'lib/right_rails/helpers/forms.rb', line 283 def autocomplete_field(name, ={}) @template.autocomplete_field(@object_name, name, ()) end |
#calendar_field(name, options = {}) ⇒ Object
279 280 281 |
# File 'lib/right_rails/helpers/forms.rb', line 279 def calendar_field(name, ={}) @template.calendar_field(@object_name, name, ()) end |
#colorpicker_field(name, options = {}) ⇒ Object
295 296 297 |
# File 'lib/right_rails/helpers/forms.rb', line 295 def colorpicker_field(name, ={}) @template.colorpicker_field(@object_name, name, ()) end |
#rater(name, options = {}) ⇒ Object
291 292 293 |
# File 'lib/right_rails/helpers/forms.rb', line 291 def rater(name, ={}) @template.rater(@object_name, name, ()) end |
#rte_field(name, options = {}) ⇒ Object
303 304 305 |
# File 'lib/right_rails/helpers/forms.rb', line 303 def rte_field(name, ={}) @template.rte_field(@object_name, name, ()) end |
#slider(name, options = {}) ⇒ Object
287 288 289 |
# File 'lib/right_rails/helpers/forms.rb', line 287 def (name, ={}) @template.(@object_name, name, ()) end |
#tags_field(name, options = {}) ⇒ Object
299 300 301 |
# File 'lib/right_rails/helpers/forms.rb', line 299 def (name, ={}) @template.(@object_name, name, ()) end |