Class: Forma::FileField

Inherits:
SimpleField show all
Defined in:
lib/forma/field.rb

Overview

Image upload field.

Instance Attribute Summary

Attributes inherited from Field

#actions, #after, #autofocus, #before, #child_model_name, #height, #hint, #i18n, #icon, #inline_hint, #label, #model, #model_name, #name, #parent, #readonly, #required, #tag, #url, #value, #width

Instance Method Summary collapse

Methods inherited from SimpleField

#errors, #has_errors?, #initialize, #value

Methods inherited from Field

#action, #id, #initialize, #localization_key, #localized_hint, #localized_label, #name_as_chain, #parameter_name, #to_html

Methods included from Html

attr, el

Methods included from Utils

extract_value, number_format, #simple_value, singular_name

Constructor Details

This class inherits a constructor from Forma::SimpleField

Instance Method Details

#edit_element(val) ⇒ Object



412
413
414
# File 'lib/forma/field.rb', line 412

def edit_element(val)
  el('input', attrs: { name: parameter_name, type: 'file' })
end

#view_element(val) ⇒ Object



408
409
410
# File 'lib/forma/field.rb', line 408

def view_element(val)
  el('div', text: 'NO IMPLEMENTATION')
end