Displaying 1 result from an estimated 1 matches for "update_query_topics_url".
2010 Jun 26
0
change parameters to periodically_call_remote
Hi,
I have a search box (id=:phrase) on my rails ajax page. I want a
periodically call remote poller to update a div whenever the value in
that box changes.
On the page containing the search box, I have the following:
<%= periodically_call_remote(:url => update_query_topics_url,
:with => "$(''phrase'').serialize()",
:frequency => 1.0)%>
I have also tried:
<%= observe_field(:phrase, :url => update_query_topics_url,
:with => "$(''phrase'').serialize()",
:frequency => 1.0)%>
The issue is that...