Turn off layout for one of action
Solution 1:
This should do it,
def view
...
render :layout => false
end
Link to Documentation
Solution 2:
Try this:
ReportsController < ApplicationController
layout false
layout 'application', :except => :view