Do you mean a js alert? Blog: http://random8.zenunit.com/ Learn rails: http://sensei.zenunit.com/
On 05/02/2009, at 2:22 AM, Shandy Nantz <[email protected] > wrote: > > I have this strange situation where I have a form and when you hit the > form button an indicator is supposed to flash at the bottom of the > screen and say something like 'Information Saved' or 'Information not > saved', whatever. The problem is that instead of flashing the message > when I submit the form I get a prompt box saying 'File Download' and I > am at a complete loss of why it is doing this. Here is my code: > > View- > <% form_remote_tag :url => {:action => 'update_action', > :id => params[:id]}, :complete => "new Effect.Appear('update_div'); > new Effect.Pulsate('update_div');" do -%> > > <%= hidden_field(:user, :design) %> > <%= submit_tag 'Update Template' %> > > <% end -%>' > > Controller- > def update_action > @account = params[:id] > > render :update do |page| > page.replace_html 'update_div', > :inline => '<b style = "color: red;">ARG</b>' > end > end > > It is pretty straight forward, but like I said I'm at a loss of why > the > strange action. Any ideas? Thx, > > -S > -- > Posted via http://www.ruby-forum.com/. > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

