method

render_action

rails latest stable - Class: ActionController::Base

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1.0.0) is shown here.

render_action(action_name, status = nil, with_layout = true)
protected

No documentation available.

# File actionpack/lib/action_controller/base.rb, line 643
      def render_action(action_name, status = nil, with_layout = true)
        if with_layout
          render_with_layout(default_template_name(action_name), status)
        else
          render_with_no_layout(default_template_name(action_name), status)
        end
      end

1Note

See #render for "new" syntax

george ยท Nov 14, 2008

See: render