I have this setup:
class UsersController < InheritedResources::Base respond_to :html, :js, :xml, :json def index @users = User.all respond_wi
You need to set this on your show action.
def show render :layout => !request.xhr? end
:)