Class: Ferro::Form::Clickable

Inherits:
Input show all
Defined in:
opal/opal-ferro/elements/ferro_form.js.rb

Overview

Container class for all clickable elements.

Direct Known Subclasses

Block, Button, CheckBox, Submit

Constant Summary

Constants included from Elementary

Elementary::RESERVED_NAMES

Instance Attribute Summary

Attributes inherited from BaseElement

#children, #domtype, #element, #parent, #sym

Instance Method Summary collapse

Methods inherited from Input

#_before_create, #disable, #enable, #entered, #keydowned, #set_focus, #value, #value=

Methods inherited from BaseElement

#add_state, #add_states, #classify_state, #component, #dom_id, #factory, #get_text, #html, #initialize, #option_replace, #remove_attribute, #root, #router, #set_attribute, #set_text, #state_active?, #toggle_state, #update_state, #value, #value=

Methods included from Elementary

#_before_create, #_stylize, #add_child, #after_create, #before_create, #cascade, #create, #creation, #destroy, #each_child, #forget_children, #method_missing, #remove_child, #style, #symbolize

Constructor Details

This class inherits a constructor from Ferro::BaseElement

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Ferro::Elementary

Instance Method Details

#_after_createObject

Internal method.



132
133
134
135
# File 'opal/opal-ferro/elements/ferro_form.js.rb', line 132

def _after_create
  `#{@element}.addEventListener("click",function(e){#{clicked};document.activeElement.blur()})`
  super
end

#clickedObject

Override this method to define what happens after element has been clicked.



139
# File 'opal/opal-ferro/elements/ferro_form.js.rb', line 139

def clicked;end