Don't use the layouts/application.html.erb

Hi,

is it possible to disable the layouts/application.html.erb in some view.
For example if I have a login for my backend which don’t need the
standard layout.

Regards, Eddy

From the controller:


layout ‘application’, :except => :your_action_name

or, perhaps:

layout false, :only => :your_action_name

“Posted via some_url” ?? << I am using this board wrong?

On Jun 18, 7:28 pm, Eddy B. [email protected]

Thanks, this is what I’m looking for!

Regards, Eddy

On 18 Jun 2008, at 10:34, Buntz wrote:

“Posted via some_url” ?? << I am using this board wrong?

There are multiple forums like ruby-forum that map to the mailing list
associated to the google group.

Fred

for completeness’ sake, youo can also do this:

render :action => “whatever”, :layout => false