hey all, I would like to do something like: if @mything.update_attributes(params[:mything]) render_a_blank_page end
I tried something like: if @mything.update_attributes(params[:mything]) render :update do |page| page << nil end
but I get an RJS error.
Any idea how to do this?
thanx in advance
Pat