Class: ActionView::Helpers::JavaScriptElementProxy
- Inherits:
-
JavaScriptProxy
- Object
- JavaScriptProxy
- ActionView::Helpers::JavaScriptElementProxy
- Defined in:
- lib/action_view/helpers/prototype_helper.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#[](attribute) ⇒ Object
Allows access of element attributes through
attribute
. - #[]=(variable, value) ⇒ Object
-
#initialize(generator, id) ⇒ JavaScriptElementProxy
constructor
A new instance of JavaScriptElementProxy.
- #reload(options_for_replace = {}) ⇒ Object
- #replace(*options_for_render) ⇒ Object
- #replace_html(*options_for_render) ⇒ Object
Constructor Details
#initialize(generator, id) ⇒ JavaScriptElementProxy
Returns a new instance of JavaScriptElementProxy.
1103 1104 1105 1106 |
# File 'lib/action_view/helpers/prototype_helper.rb', line 1103 def initialize(generator, id) @id = id super(generator, "$(#{id.to_json})") end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ActionView::Helpers::JavaScriptProxy
Instance Method Details
#[](attribute) ⇒ Object
Allows access of element attributes through attribute
. Examples:
page['foo']['style'] # => $('foo').style;
page['foo']['style']['color'] # => $('blank_slate').style.color;
page['foo']['style']['color'] = 'red' # => $('blank_slate').style.color = 'red';
page['foo']['style'].color = 'red' # => $('blank_slate').style.color = 'red';
1114 1115 1116 1117 |
# File 'lib/action_view/helpers/prototype_helper.rb', line 1114 def [](attribute) append_to_function_chain!(attribute) self end |
#[]=(variable, value) ⇒ Object
1119 1120 1121 |
# File 'lib/action_view/helpers/prototype_helper.rb', line 1119 def []=(variable, value) assign(variable, value) end |
#reload(options_for_replace = {}) ⇒ Object
1131 1132 1133 |
# File 'lib/action_view/helpers/prototype_helper.rb', line 1131 def reload( = {}) replace(.merge({ :partial => @id.to_s })) end |
#replace(*options_for_render) ⇒ Object
1127 1128 1129 |
# File 'lib/action_view/helpers/prototype_helper.rb', line 1127 def replace(*) call 'replace', @generator.send(:render, *) end |
#replace_html(*options_for_render) ⇒ Object
1123 1124 1125 |
# File 'lib/action_view/helpers/prototype_helper.rb', line 1123 def replace_html(*) call 'update', @generator.send(:render, *) end |