instance method dom_id

Ruby on Rails 2.3.18

Since v2.2.3 Last seen in v4.0.13

Available in: v2.2.3 v2.3.18 v3.0.20 v3.1.12 v3.2.22.5 v4.0.13

Signature

dom_id(record, prefix = nil)

The DOM id convention is to use the singular form of an object or class with the id following an underscore. If no id is found, prefix with “new_” instead. Examples:

dom_id(Post.find(45))       # => "post_45"
dom_id(Post.new)            # => "new_post"

If you need to address multiple instances of the same class in the same view, you can prefix the dom_id:

dom_id(Post.find(45), :edit) # => "edit_post_45"

Parameters

record req
prefix opt = nil
Source
# File actionpack/lib/action_controller/record_identifier.rb, line 75
    def dom_id(record, prefix = nil) 
      if record_id = record.id
        "#{dom_class(record, prefix)}#{JOIN}#{record_id}"
      else
        dom_class(record, prefix || NEW)
      end
    end

Defined in actionpack/lib/action_controller/record_identifier.rb line 75 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActionController::RecordIdentifier

Type at least 2 characters to search.

↑↓ navigate · open · esc close