Class: Browser::DOM::Element::Input

Inherits:
Browser::DOM::Element show all
Defined in:
opal/browser/dom/element/input.rb

Constant Summary

Constants inherited from Browser::DOM::Element

Img

Constants inherited from Node

Node::ATTRIBUTE_NODE, Node::CDATA_SECTION_NODE, Node::COMMENT_NODE, Node::DOCUMENT_FRAGMENT_NODE, Node::DOCUMENT_NODE, Node::DOCUMENT_TYPE_NODE, Node::ELEMENT_NODE, Node::ENTITY_NODE, Node::ENTITY_REFERENCE_NOCE, Node::NOTATION_NODE, Node::PROCESSING_INSTRUCTION_NODE, Node::TEXT_NODE

Instance Attribute Summary collapse

Attributes inherited from Browser::DOM::Element

#attribute_nodes, #attributes, #class_name, #class_names, #editable, #height, #id, #inner_html, #offset, #outer_html, #position, #scroll, #size, #style!, #width, #window

Attributes inherited from Node

#child, #children, #document, #element_children, #first_element_child, #last_element_child, #name, #namespace, #next, #next_element, #node_type, #outer_html, #parent, #previous, #previous_element

Instance Method Summary collapse

Methods inherited from Browser::DOM::Element

#/, #=~, #[], #[]=, #add_class, #animate, #animation_queue, #at, #at_css, #at_xpath, #blur, #click, create, #css, #data, def_selector, #edit, #editable?, #fade_in, #fade_out, #fade_toggle, #focus, #focused?, #hide, #inner_dom, #inner_dom=, #inspect, native_is?, native_matches?, new, #remove_attribute, #remove_class, #search, selector, #shadow, #shadow?, #show, #slide_down, #slide_toggle, #slide_up, #style, subclasses, tag_name, #toggle, #toggle_class, #visible?, #xpath

Methods included from Event::Target

#off, #on, #on!, #one, #trigger, #trigger!

Methods inherited from Node

#<<, #==, #>>, #add_child, #add_next_sibling, #add_previous_sibling, #ancestors, #append_to, #attached?, #blank?, #cdata?, #comment?, #content, #content=, #custom?, #document?, #elem?, #fragment?, #initialize, #initialize_copy, new, #parse, #path, #prepend_to, #remove, #remove_child, #replace, #text?, #traverse

Methods included from NativeCachedWrapper

#restricted?, #set_native_reference

Constructor Details

This class inherits a constructor from Browser::DOM::Node

Instance Attribute Details

#filesArray<File> (readonly)

Returns list of files attached to this Browser::DOM::Element::Input.

Returns:



47
48
49
# File 'opal/browser/dom/element/input.rb', line 47

def files
  Native::Array.new(`#@native.files`).map { |f| File.new(f.to_n) }
end

Instance Method Details

#check!Object



25
26
27
# File 'opal/browser/dom/element/input.rb', line 25

def check!
  `#@native.checked = 'checked'`
end

#clearObject



41
42
43
# File 'opal/browser/dom/element/input.rb', line 41

def clear
  `#@native.value = ''`
end

#disable!Object



33
34
35
# File 'opal/browser/dom/element/input.rb', line 33

def disable!
  `#@native.disabled = 'disabled'`
end

#enable!Object



37
38
39
# File 'opal/browser/dom/element/input.rb', line 37

def enable!
  `#@native.disabled = ''`
end

#uncheck!Object



29
30
31
# File 'opal/browser/dom/element/input.rb', line 29

def uncheck!
  `#@native.checked = ''`
end

#valueObject



8
9
10
11
12
13
14
15
16
17
# File 'opal/browser/dom/element/input.rb', line 8

def value
  %x{
    if (#@native.value == "") {
      return nil;
    }
    else {
      return #@native.value;
    }
  }
end