Displaying 1 result from an estimated 1 matches for "ruby_array".
Did you mean:
rb_array
2009 Jan 19
1
pass ruby array to javascript function
...to go about passing a ruby array to a javascript
function. I was able to do this the other way around and pass a
javascript array to an action using JSON and convert it back to a ruby
array:
Object.toJSON(<%= array_or_string_for_javascript(@array) %>
then in the action I was able to do:
ruby_array = JSON.parse(params[:array])
But this time I want to pass an array to a javascript function through
a function call within :update
render :update do |page|
page << "setTime(#{time})"
end
where setTime is the javascript function and time is the ruby array...