Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 --> ...
11
votes
3answers
5k views

(Rails) What is “RJS”?

I've seen "RJS" and "RJS templates" mentioned in passing in blog posts and tutorials. I did a search, but I'm still unsure about it. Is it a technology specific to Rails, rather than a standard like ...
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 ...
6
votes
4answers
1k views

Redirecting to a 500 page when an AJAX call fails in Ruby on Rails

I'm working with an application built in Ruby on Rails with very poor error handling right now. If a controller method is executed via ajax, and that method results in a 500 (or 404 or any other ...
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 ...
4
votes
3answers
4k views

Ruby on Rails Country/State Select Enigma

I am trying to implement something seemingly very simple, and I have been beating my head against it for days at this point. My desired end result is a Country select drop-down, tied to a State ...
3
votes
1answer
416 views

rails 2 replace_html puts javascript into the page

In my controller I have: respond_to do |format| format.js end In my rjs: page.replace_html("source_credential_list", :partial => "source_credential_list", :object => ...
3
votes
5answers
3k views

Rails 3: Simple AJAXy Page updates?

I can't believe I've been looking four hours for this simple task, but I have. In Rails 2.3, I could replace one section of a page with this simple code: render :update do |page| ...
3
votes
3answers
380 views

Reuse js.rjs files in Rails?

i have an .js.rjs file, that must be used in many places. How can i reuse it ? For example, in my .js.rjs file i need something like this: page << ( render "widely_used_stuff" ) where ...
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
1answer
53 views

How to do complex forms with jQuery instead of RJS

In episode 74 of railscasts ryan shows how to achieve complex forms with RJS: http://railscasts.com/episodes/74-complex-forms-part-2 The trick is to create a partial and link_to the partial using ...
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
2answers
352 views

Jrails and jquery-rails together?

I hope you forgive me if I'm a little confused about this. Jrails rewrites all the helper methods for rjs otherwise in prototype. Jquery-rails overrides rails.js (so I taught the rjs helpers as ...
2
votes
1answer
122 views

How to access view helpers from RJS helpers in Ruby on Rails?

I had some common bits of RJS that I was repeating in multiple RJS files, and so wanted to put it into a helper. I added a method to app/helpers/application_helper.rb just like I would normally for ...
2
votes
1answer
422 views

RJS: How to get the value and innerHTML of a DOM element

I want to assign the value and the innerHTML source of a DOM element to the local ruby variables. However, in my method seemly i can not make use of the RJS to complete this function. I don't know ...
2
votes
1answer
2k views

Rails 3 Link_to :remote is not triggering RJS

I'm working to setup an AJAX action in rails 3 with the following code. The AJAX part of the code seems to work, but it does not request the correct file and my respond_to serves it the regular HTML. ...
2
votes
1answer
597 views

How to disable Rails submit buttons alongside Prototype helpers & RJS?

I'm trying to follow this post http://stackoverflow.com/questions/576240/how-can-i-unobtrusively-disable-submit-buttons-with-javascript-and-prototype but I can't get it to work. The form triggers an ...
2
votes
2answers
10k views

Rails 3 and RJS

I use the rails 3.0.0.beta Is there any new syntax to write RJS, here is an example def remote_create @photo = Photo.new(params[:photo]) respond_to do |format| if @photo.save ...
2
votes
2answers
342 views

Confused as to which Prototype helper to use

After reading http://api.rubyonrails.org/classes/ActionView/Helpers/PrototypeHelper.html I just can't seem to find what I'm looking for. I have a simplistic model that deletes the oldest message after ...
2
votes
1answer
506 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 which basically is ...
2
votes
0answers
434 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 being rendered into the ...
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 ...
2
votes
4answers
3k views

How can I use different RJS templates from the same rails controller?

I have a controller method that returns a list for a drop down that gets rendered in a partial, but depending on where the partial is being used, the RJS template needs to be different. Can I pass a ...
1
vote
1answer
55 views

link_to_function does not react to click in rails 3.1.0 & simple_form

Here is the code in rfqs/_form_new.html.erb to add a selection box for standard. <%= simple_form_for @rfq do |f| %> <div id="std"> <%= render :partial => ...
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
1answer
75 views

RJS error “object doesn't support this property ” on element update

I have the following code in the controller. I am populating a drop down box dynamically based on the selection from another drop down box. def update_releases project = ...
1
vote
0answers
109 views

RJS error in rails

I am working in rails 2.3.8 and I got following rjs error in my rails application. RJS error: TypeError: $("#create_event_dialog") is nul Then I click ok, then come another one. ...
1
vote
1answer
89 views

YUI3 Uploader + Rails rjs

I'm trying to use the YUI3 Uploader with a Rails 2.3.12 project. I've got it working up to the point of parsing the response after uploading. The response is an RJS file rendering a partial, to ...
1
vote
1answer
51 views

calling application prototype js function from rjs

Is it possible to call an application level prototype JavaScript function from rjs? I wanna call a function to perform certain tasks after my ajax call. How am i supposed to do it?
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
0answers
221 views

Changed to coffeescript, now rails_ujs doesn't seem to be working>

I have a rails 3.1 project with a JS file I write. Today I undertook the task of rewriting it as Coffeescript. Most things seemed fine and my /assets/application.js script looks like it compiles ...
1
vote
1answer
612 views

Rails 3.1 prototype-rails

Can the new prototype-rails gem for Rails 3.1 which allows RJS and prototype support also be used with JQuery-UJS to allow JQuery to be used with RJS that is JS templates and its helpers? To confirm ...
1
vote
2answers
96 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
279 views

Rails Ajax single line RJS files

Everything I am reading about rails 3 and AJAX says that we should have respond_to do |format| @wines = Wine.all(:conditions => {:category => "Sparkling"}) format.js end and then a ...
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
1answer
631 views

Rails Ajax Hide/Show Toggle Link using RJS

I want users to be able to comment on submissions. Below each submission I want there to be a link that says "Comments (2)"...when you click on this link it dynamically loads in the comments, as well ...
1
vote
1answer
769 views

Anyone has a link to Rails (2.3.8) RJS Api?

Hey guys, do any of you know any good reference for the RJS mechanisms in Rails (2.3.8) I can find a few examples from like 2006/2007 and no actual documentation.
1
vote
1answer
108 views

rjs is not working with IE

My code: # app/controllers/log_controller.rb class LogController < ApplicationController def in @user = User.login(params[:login]) respond_to do |format| format.js end end ...
1
vote
1answer
167 views

Rails - How to differentiate an action call from different pages?

I have a destroy action defined for a particular resource. On completion, it uses an rjs file with a visual effect to remove the resource from the page that it is being called from. My problem is ...
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 2 3 4