Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use a different layout for some actions (mostly for the new action in most of the controllers). I am wondering what the best way to specify the layout would be? (Consider like I am using 3 or more different layouts in the same controller)

I don't like using

render :layout => 'name'

that much. I did like doing

layout 'name', :only => [:new]

but it turns out I can't use that to specify 2 different layouts (e.g. if I call layout 2 times in the same controller, with different layout names and different only options, the first one gets ignored - those actions don't display in the layout i specified). I'm using Rails 2.

share|improve this question

1 Answer

up vote 93 down vote accepted

You can use a method to set the layout.

class MyController < ApplicationController
  layout :resolve_layout

  # ...

  private

  def resolve_layout
    case action_name
    when "new", "create"
      "some_layout"
    when "index"
      "other_layout"
    else
      "application"
    end
  end
end
share|improve this answer
10  
Cool, thanks. And in case someone wants to do simpler things with one-liner the following is possible. Its easy to read and place in top of the controller. --- layout Proc.new{ ['index', 'new', 'create'].include?(action_name) ? 'some_layout' : 'other_layout' } – holli Aug 28 '11 at 21:13
+1 for cool answer...!! – balanv Jul 4 '12 at 9:25
Would this have a large effect on application performance if various layouts are using say several different css & js files respectively? – Cyle Nov 8 '12 at 22:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.