4
votes
6answers
233 views
+100
Is RJS evil and why?
I heard a bunch of rails developer saying that RJS is evil. I've never used it since I always managed to do what I wanted using classic javascript or jquery so I didn't pay attenti …
1
vote
5answers
882 views
Rails: link_to_remote update doesn’t render the view
Hi,
I have a link_to_remote to render the edit action of an object. But all it does is update the Dom Element with this response
try { } catch (e) { alert('RJS error:\n\n' + e.to …
0
votes
2answers
23 views
Is it possible to have a “global” RJS ?
I don't like using RJS very much, but I'm working on some legacy code and it looks like I'll have to do that.
I was wondering if it was possible to have some kind of "global" rjs …
1
vote
0answers
23 views
why is Ajax.Autocompleter setting the style for the div container for the results to display:none ?
my autocomplete call is showing nothing right now, because the div that i am inserting the ul into has its style set to display:none. using firebug, i can see the results are retur …
0
votes
2answers
24 views
Nested link_to_function/insert_html does not work
Here is a simple example of the problem.
http://gist.github.com/235729
In short, if you have a index.rhtml with:
<%= link_to_function "A link to insert a partial with nested …
0
votes
0answers
26 views
Order of execution of code in an RJS file [closed]
Possible Duplicate:
order that code is executed in, in an RJS script
I'm trying to implement a carousel where new content is loaded via a link_to_remote call. I'm using Gl …
0
votes
0answers
26 views
order that code is executed in, in an RJS script
I'm trying to implement a carousel function that's ajax driven. In other words, fetching new "slides" through the controller". I'm using glider.js (with prototype).
My RJS file ne …
0
votes
1answer
21 views
problem with link_to_remote in Rails 2.1
I am facing this strange problem with the following section of code
<% if (@more == -1) %>
<%= link_to_remote "More Posts", :html => {:id => 'more-link', :onClick …
2
votes
1answer
37 views
Question regarding RJS and usage of link_to_remote
I was working on my website when I cam across this problem, I have 100 posts in my blog and I am paginating them 10 at a time, I display the 1st 15 and display a link at the bottom …
0
votes
1answer
30 views
Test ajax in rails
Hi
In my action i have
render :update do |page|
page["an_id"].value = "string"
end
My question is how can i test that the textfields value is changed propely?
Tried assert …
0
votes
1answer
31 views
ASP.NET MVC AjaxHelpers recommended usage
It seems all the examples I come across specifiy an UpdateTargetId to render out the HTML content of the Ajax response. This is quite a bit different than how it's done in the Rail …
0
votes
0answers
63 views
Nested link_to_function / insert_html causes javascript errors
Im using a link_to_function / insert_html to insert a partial into the page. Everything works fine, until i add another link_to_function / insert_html into the partial that is bein …
0
votes
1answer
29 views
rails rjs modify style in the body to add margin
How can I use RJS to modify CSS elements on a page? I'm looking to do modify the margin of a div to add a "margin-top: 2.8em;"
How can I access this with RJS or should i use some …
0
votes
1answer
101 views
rails form_remote_tag and onselect submit…
I have a form_remote working perfectly for the form currency. The only change I want to make is the do away with submit button for a select box. So they just click the correct cu …
1
vote
3answers
2k views
RubyOnRails 2.2 + Jquery UI Sortable & AJAX: This is how I did it. Is there a better way?
Hello,
In a Rails 2.2 project, I'm having users put together a list of projects into a portfolio object (i.e.: PortfolioHasManyProjects). On the page is a Rails form for regular t …
