Module ActionView::Helpers::RecordIdentificationHelper
In: actionpack/lib/action_view/helpers/record_identification_helper.rb

Methods

Public Instance methods

See ActionController::RecordIdentifier.dom_class — this is just a delegate to that for convenient access in the view.

[Source]

# File actionpack/lib/action_view/helpers/record_identification_helper.rb, line 10
      def dom_class(*args, &block)
        ActionController::RecordIdentifier.dom_class(*args, &block)
      end

See ActionController::RecordIdentifier.dom_id — this is just a delegate to that for convenient access in the view.

[Source]

# File actionpack/lib/action_view/helpers/record_identification_helper.rb, line 15
      def dom_id(*args, &block)
        ActionController::RecordIdentifier.dom_id(*args, &block)
      end

See ActionController::RecordIdentifier.partial_path — this is just a delegate to that for convenient access in the view.

[Source]

# File actionpack/lib/action_view/helpers/record_identification_helper.rb, line 5
      def partial_path(*args, &block)
        ActionController::RecordIdentifier.partial_path(*args, &block)
      end

[Validate]