Flowdock
method

observe_field

Importance_2
v1.0.0 - Show latest stable - 0 notes - Class: ActionView::Helpers::JavaScriptHelper
  • 1.0.0 (0)
  • 1.1.6
  • 1.2.6
  • 2.0.3
  • 2.1.0
  • 2.2.1
  • 2.3.8
  • 3.0.0
  • 3.0.9
  • 3.1.0
  • 3.2.1
  • 3.2.8
  • 3.2.13
  • 4.0.2
  • 4.1.8
  • 4.2.1
  • 4.2.7
  • 4.2.9
  • 5.0.0.1
  • 5.1.7
  • 5.2.3
  • 6.0.0
  • 6.1.3.1
  • 6.1.7.7
  • 7.0.0
  • 7.1.3.2
  • What's this?
observe_field(field_id, options = {}) public

Observes the field with the DOM ID specified by field_id and makes an AJAX call when its contents have changed.

Required options are:

:url:url_for-style options for the action to call when the field has changed.

Additional options are:

:frequency:The frequency (in seconds) at which changes to this field will be detected. Not setting this option at all or to a value equal to or less than zero will use event based observation instead of time based observation.
:update:Specifies the DOM ID of the element whose innerHTML should be updated with the XMLHttpRequest response text.
:with:A JavaScript expression specifying the parameters for the XMLHttpRequest. This defaults to ‘value’, which in the evaluated context refers to the new field value.

Additionally, you may specify any of the options documented in link_to_remote.

Show source
Register or log in to add new notes.