Seems like periodically_call_remote is deprecated in Rails 3, any ideas how to achieve the same functionality?
|
I was searching for the right way to do it with Rails 3 but now I am confident that there is no equivalent to periodically_call_remote in Rails 3. To get the exact same functionality done with jQuery, I used:
|
|||||
|
|
If you really want to use it, then you can install the legacy plugin which has this method: http://github.com/rails/prototype_legacy_helper Rails favors UJS now. Check out these links for more info on UJS in Rails 3: I did a short writeup on this in relation to prototype and the link_to_remote tag: Hope this helps! |
|||
|
|
Use
This would attempt to poll the given URL for JSON data every 5 seconds. |
|||
|
|
|
If you want to continue using prototype.js, so you can do what follows:
More about Ajax.PeriodicalUpdater here. |
|||
|
|
|
This is what you need for a periodic ajax call, replace some_path with your own RESTful route:
The index.js.erb file would look like this:
|
|||
|
|