Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

courtenay http://habtm.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

More rails conditional layouts

In your controller:

  layout :my_layout_func

  ...

protected

  def my_layout_func
   # anything ruby will work
   ['list','index',nil].include?(action_name)? 
   'noheading':'my_layout'
 
   # or you could do
   case action_name
    when 'monkey': 'monkey_layout'
    when 'edit'  : 'form_layout'
   end
 end



« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS