On Mar 25, 5:22 pm, "tashfeen.ekram" <[email protected]> wrote:
> Still learning some stuff so forgive the newbie type questions.
>
> 1. if i use the :update param on form_for_remote can I mix javascript
> and ruby? i want to use the selector offered by prototype but pass in
> the parameters from a ruby expression
>
> <% form_remote_for(userdrug, :loading => "$('XXXX').show();" + "alert
> ('hi');" do |f| %>
>
> I would basically like in where XXXX is to have an ruby expression
> like object.id
That's a ruby string, you can put whatever ruby expression you want
(of course this is evaluated when the template is rendered, not when
you press submit
>
> 2. Can you use RJS commands for :loading ? seems like not :(
>
You can via update_page (an ajax responder is often cleaner though).
You'll write better JS once you get over RJS
> 3. for the button:
>
> <%= f.submit "Update", :disable_with => "Please wait..." %>
>
> I would like it to be disabled until the request ir returned however
> using the above only disables it momentrily whil it is sending the
> request and then it can be pressed again even before the sever
> responds.
>
Personally I would do that via an ajax callback. The code for submit
looks it would undisable the button if the onsubmit returns false
(which the one remote_form_for will do since it's preventing the
browser from submitting the form normally)
Fred
> Thanks!
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---