I'm trying to create an ajax enabled form in rails. When I click the submit button, the form is saving properly (I can see the update taking place in the database), however, the page just sits there (looks as though nothing is happening, no redirect, etc) and in my web inspector, I see the following error:
POST http://localhost:3000/user/mike 500 (Internal Server Error)
However, when I click the above link (http://localhost...) the page is displayed including the :notice.
I would like the page to redirect as it normally would and show the :notice if available. I would also like to be able to save the form over ajax, without redirect on a certain time interval (every minute or so). Is this possible?
user_controller.rb
def create
@user = User.new(params[:user])
respond_to do |format|
if @user.save
format.html { redirect_to(@user, :notice => 'User saved.') }
format.js
else
format.html { render :action => "new" }
format.js
end
end
end
def update
@user = User.find_by_username(params[:id])
respond_to do |format|
if @user.update_attributes(params[:user])
format.html { redirect_to(@user, :notice => 'User updated.') }
format.js
else
format.html { render :action => "edit" }
format.js
end
end
end
And, here is my form tag:
<%= form_for @user, :remote => true, :html => { :multipart => true, :class => 'edit_profile' } do |f| %>
Any suggestions would be awfully helpful...Thanks everyone.