Tagged Questions
29
votes
3answers
19k views
Javascript Include Tag Best Practice in a Rails Application
Say I need to call a javascript file in the <head> of an ERb template.
My instinct is to do the usual:
<head>
<%= javascript_include_tag :defaults %> <!-- For example -->
...
7
votes
7answers
1k views
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 attention. Now I'm getting ...
4
votes
4answers
473 views
Javascript templating without RJS, with JSON
One of the most convenient things about RJS is its ability to render a partial so you have all your view code in one place:
# task/index.html.erb
<ul id="task_list">
<%= render :partial ...
4
votes
5answers
374 views
RJS or Javascript?
I've used RJS in the past for RoR projects and felt terribly constrained by what it could do. However, using Javascript alone felt/feels ugly and hack-y. This is particularly true when writing ...
3
votes
2answers
1k views
Rails 3: RJS vs JavaScript
I've recently started learning Ruby on Rails, based on RoR3 beta/RC. I had earlier been developing applications using other frameworks (like Django), where the JavaScript had been written completely ...
2
votes
2answers
146 views
Rails Error submitting partial via Javascript
I have the following code in my controller:
File: app/controllers/photos_controller.rb
def show_snapshot_comments
snapshot = Snapshot.find(params[:id])
@photo = snapshot.photo
comments = ...
2
votes
1answer
120 views
rails autocomplete question about removing extraneous info
I've got my autocomplete plugin working perfectly... except I have certain info that I want displayed in the autocomplete divs, but I don't want to end up when the user makes their selection.
Ie... I ...
2
votes
2answers
3k views
Ajax pop up box using Ruby on Rails
This is a pretty basic question but I can't find a good answer for it. I have a page in my Rails app where there are many objects that can be 'flagged'. Clicking the flag button should display a ...
2
votes
5answers
538 views
How can I get rails to send javascript errors to the log, not alert?
I'm new to Rails.
Javascript errors to an alert box injure my soul. Is there a way to send it to console.log() instead of alert()?
2
votes
2answers
2k views
RJS: Check for existing page element?
I have a textfield with the id "foo" that sometimes exists and sometimes not. If it exists I'd like to fill in a certain value.
How do you do this by using RJS (in Rails 2.2)?
I tried this and it ...
2
votes
3answers
1k views
How to change html tag attribute value from RJS template?
Is it possible to change a html tag attribute value from an RSJ template?
I know that there is a page.replace_html method, but it is not very useful in my case, since I have lengthy values of various ...
2
votes
1answer
3k views
RJS: Ajaxified select_tag
Since I didn't get the expected answer on my last question I'll try to simplify and narrow my question:
How can I build a dropdown-menu that uses AJAX (no submit-button) to call the show action of ...
2
votes
2answers
2k views
RoR: Multiple remote_function calls on single :onclick
I have two different methods that I want to execute when a user clicks a button. I have them working separately, but when I try to combine the two I get errors. The two ones I have currently are
...
1
vote
2answers
100 views
Passing rails variables to javascript
I have some values in ruby (variables and objects / hash) that I want to pass on to javascript on the rendered page. Currently I use these methods to simply write the javascript of declaring the ...
1
vote
2answers
95 views
Redirecting main window from ajax call
I have a ajax call to a controller that checks for authentication, when no authentication exists it sends the call onwards to the signin controller who checks if it is a xhr request. If it is it ...
1
vote
2answers
95 views
What defines RJS? confused with what I have Read
I am a little confused from what I have read on stackoverflow regarding RJS.
Many people have stated that Rails 3.0 has dropped RJS for UJS .This statement confuses me because from what I understand ...
1
vote
1answer
64 views
RJS in Play Framework
have anyone found a substitution for RJS in "Ruby on Rails" for play?
P.S.
I don't mean just a tag with script section.
I mean real server-generated JavaScript-file.
1
vote
1answer
99 views
RJS Conditionals based on Element Style - Ruby on rails
I have some RJS in a rails app. I'd like to be able to check the style of an html element before executing an action on that element.
I have tried the following
page << "if ...
1
vote
1answer
365 views
Is there a way to call a Rails 3 function from a link_to tag, using :remote => true?
In my Rails 3 app, I have a list of questions. Each question has a "question number" which designates its order in the table/list. I'm trying to implement a "Move Up" link that will decrement that ...
1
vote
2answers
213 views
How to create an OnChange “totaling” function from an unknown number of text fields
I'm having trouble figuring out how to do a simple Javascript task on fields in a table created with Rails 3.
My table has characteristic rows that the user adds using a form below (which updates ...
1
vote
2answers
263 views
Select-all checkboxes in a FORM_TAG
In a form_tag, there is a list of 10 to 15 checkboxes:
<%= check_box_tag 'vehicles[]', car.id %>
How can I select-all (put a tick in every single) checkboxes by RJS? Thanks
EDIT: Sorry I ...
1
vote
1answer
390 views
RJS returns plain javascript without JS tags
Here is code on view in FeesController "show" action template:
<div id="payers_controls">
<%= link_to_remote('New payer',
:update => ...
1
vote
2answers
1k views
RJS/Javascript conventions in rails
I'm starting to look into the whole world of RJS and Prototype/jQuery in rails and am a little bit confused. There seems to be no clear line of where to use one or the other.
Say i wanted one of the ...
0
votes
1answer
285 views
Convert rjs to js.erb in rails 3.1
How to do I convert an rjs file to js.erb
Just renaming doesn't work in my case
This is my old code(works well with rails 2 app)
page.replace_html(
"overlay" ,
:partial => ...
0
votes
1answer
144 views
Multiple dependent dynamic select boxes in form
There is a model A that has_many B and a form where one can create a new A and
add/remove Bs. I.e. there is a link Add new B that runs some Javascript to insert another partial where one fills in ...
0
votes
2answers
66 views
How to make an AJAX call to different domains in Ruby on Rails 3.0
I have an action email in my controller of application running on www.example.com and I am trying to send the form data of email to www.data.example.com/email where my another application receives the ...
0
votes
1answer
78 views
How to call this function through RJS?
Function call from javascript
Test.show({title : "Text",body : "Description" });
How can I call this function from RJS ?
page << "Test.show({title : "Text",body : "Description" });"
...
0
votes
1answer
690 views
Rails 3 form_for :remote => true giving me a weird error
I am getting the following error:
try {
Element.update("status", "This product doesn't exist.");
} catch (e) { alert('RJS error:\n\n' + e.toString()); alert('Element.update(\"status\", \"This product ...
0
votes
2answers
605 views
Ajax flash message in ruby on rails
I'm trying to show a flash message and render it with Ajax, but the message does not seem to be appearing until after I refresh the page.
Here's my create.rjs file:
page.insert_html :top, ...
0
votes
1answer
101 views
RJS and Observer for Showing/Hiding a DIV
I have an RJS template that I use to essentially do the following:
Fade out a submitted form
Show a response popup div
Bring up a new form using a partial
What I want to do is have the RJS hold off ...
0
votes
0answers
103 views
RJS gets processed as HTML when using custom submit button
I have a simple remote form that gets submitted using a custom button.
When I use the regular submit button, the RJS is executed exactly as it should - however, when using custom element that triggers ...
0
votes
1answer
88 views
How to access an array via RJS proxy?
In Rails' RJS Adapter,
page['id'] // $('id')
accesses an CSS-id,
page['id'].property // $('id').property
a property of it. But how can I access an array index, e.g.
...
0
votes
1answer
1k views
Inserting AJAX page.insert_html for dynamic divs
I'm running into a little hiccup with my AJAX creation of comments for posts. Everything works great but I am doing this in the index.html.erb view so the create.js.erb is finding the first div that ...
0
votes
1answer
169 views
What is the right way to make a new XMLHttpRequest from an RJS response in Ruby on Rails?
I'm trying to come closer to a solution for the problem of my previous question.
The scheme I would like to try is following:
User requests an action from RoR controller.
Action makes some database ...
0
votes
2answers
2k views
RJS error: TypeError: element is null
I got RJS error: TypeError: element is null while using ajax.
I used in view
<%= periodically_call_remote(:url=>{:action=>'get_user_list', :id=>'1'},
:frequency => '5') %>
in ...
0
votes
1answer
438 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 something like
page ...
0
votes
3answers
422 views
rails rjs replacement and swap values
I'm trying to figure out how to use RJS to swap between two fields... i know how to replace the values but I can't seem to figure out how to read it.
Is it not possible to read values thru RJS? Only ...
0
votes
2answers
2k views
Passing objects from Rails RJS to a javascript function call without quoting the values?
In a Ruby on Rails project I need to have a JavaScript function executed at the end of an Ajax call. My problem is that the values being passed into the JavaScript function being called with page.call ...
0
votes
1answer
692 views
(Rails,Javascript) RJS “Can't find variable” error not providing detailed information
I'm having an issue with rails involving javascript. Basically, I have the following code:
<ul id="all-points">
<%for point in Point.find(:all)%>
<%domid = ...
0
votes
1answer
310 views
Access the value of an unsent form to use for remote_function
I'm curious how to solve this in a clean way. I've read a few forum posts but couldn't do something that works.
I have a dropdown which — on change — should change a value for a remote_function. The ...
-1
votes
2answers
386 views
What's wrong with my Ruby on Rails code?
So I've been trying to add some AJAX to my home page with rjs and I get this javascript error in a popup window:
RJS error:
TypeError: Cannot call method 'getElementsByTagName' of null
Below is all ...