On Mar 12, 9:00 pm, David <[email protected]> wrote:
> Im wondering, how do I go about allowing my javascript function to
> load the updated instance variable that is loaded within a partial?
> To be specific, I have a javascript function call:
> onmousedown="changeTab(this)" for a tab in my layout. This function
> passes an instance variable with an Ajax.Request like so:
>
> changeTab(tab) {
> new Ajax.Request( '/test/ajax', {parameters: { date: <%=
> array_or_string_for_javascript(@date) %> })
>
> }
This code is only evaluated once so what happens is normal. One way of
doing things is to have the date be a parameter of changeTab (assuming
that whatever calls changeTab is updated after these requests).
Another is to have your requests update some global javascript
variable
Fred
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---