Class: Aurita::GUI::File_Field
- Inherits:
-
Form_Field
- Object
- Array
- Element
- Form_Field
- Aurita::GUI::File_Field
- Defined in:
- lib/aurita-gui/form/file_field.rb
Overview
Usage:
Like Input_Field, but skipping attribute @value, as file input fields do not support default values (for good reason).
i = File_Field.new(:name => :the_file,
:label => 'Choose file')
Instance Attribute Summary
Attributes inherited from Form_Field
#data_type, #form, #hidden, #hint, #invalid, #label, #required, #type, #value
Attributes inherited from Element
#attrib, #force_closing_tag, #gui_element_id, #parent, #tag
Instance Method Summary collapse
- #element ⇒ Object
-
#initialize(params) ⇒ File_Field
constructor
A new instance of File_Field.
Methods inherited from Form_Field
#disable!, #disabled=, #editable!, #enable!, #hidden?, #hide!, #invalid!, #invalid?, #optional!, #readonly!, #readonly=, #readonly?, #readonly_element, #required!, #required?, #show!, #to_hidden_field, #to_s
Methods inherited from Element
#+, #<<, #[], #[]=, #add_class, #aurita_gui_element, #clear_floating, #css_classes, #find_by_dom_id, #get_content, #has_content?, #id, #id=, #inspect, #js_init_code, #length, #method_missing, #recurse, #remove_class, #set_content, #string, #swap, #to_ary, #touch, #touched?, #type=, #untouch
Methods included from Marshal_Helper_Class_Methods
Methods included from Marshal_Helper
Constructor Details
#initialize(params) ⇒ File_Field
Returns a new instance of File_Field.
17 18 19 20 21 22 |
# File 'lib/aurita-gui/form/file_field.rb', line 17 def initialize(params) params[:tag] = :input params[:type] = :file unless params[:type] params.delete(:value) super(params) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Aurita::GUI::Element
Instance Method Details
#element ⇒ Object
23 24 25 |
# File 'lib/aurita-gui/form/file_field.rb', line 23 def element HTML.input(@attrib) end |