You could also use something like the following: class AController < ActionController::Base layout "my_layout", :except => [ :action1, :action2 ]
... end Mauricio's method might be preferred when you're using the default layout and you've just got a couple of actions that don't require the layout. On Fri, Feb 20, 2009 at 7:43 PM, Morgan Morgan < [email protected]> wrote: > > Maurício Linhares wrote: > > render :action => 'some_action', :layout => false > > > > - > > Maur�cio Linhares > > http://alinhavado.wordpress.com/ (pt-br) | http://blog.codevader.com/ > > (en) > > > > > > > > On Fri, Feb 20, 2009 at 2:23 PM, Morgan Morgan > > Thank you.. worked like a charm. > -- > Posted via http://www.ruby-forum.com/. > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

