Ruby Javascript Generator Templates extension .rjs

learn more… | top users | synonyms

0
votes
1answer
29 views

How to implement this nested linked_to_function?

In my view I want the user to be able to browse a catalog of products. The hierarchy is as following: Category Product AdditionalInfoForm In my main view I render a partial for the ...
0
votes
2answers
57 views

rails observe_form and prototype: return '$A($(form).getElementsByTagName('*'))'

I have observe_form in my view: <%= observe_form 'new_lead', :url => { :action => 'update_price' }, :frequency => 0.1 %> , _update_price.rjs partial and this method in controller: def ...
0
votes
1answer
23 views

set value of field using rjs

I need to set the value of a field in my form using rjs. That field in question appears twice in my form and I want to set the value of the field found inside a particular div only. The code below ...
1
vote
1answer
256 views

yeoman build fails - rjs mainConfigFile location

yeoman server works fine, but yeoman build looks for my main requirejs file in a strange place and fails: <WARN> Unable to read "scripts/scripts/main.js" file (Error code: ENOENT). Use --force ...
0
votes
2answers
105 views

doing a remote => true call with javascript

Is there a way to have the same behavior as a link_to ... remote=> true with javascript? maybe it's not necessary - I have a div with the user's name and picture in it. I want to have the ...
0
votes
1answer
58 views

How do I submit a from from a .js.erb file using RJS?

I have a form that, when the user submits, and the user is not signed in, they receive a modal prompt to login. Once the user logs in, the modal disappears, but they have to click the submit button on ...
0
votes
1answer
153 views

dynamically set value of textfield rjs rails

I am trying to set the value of the hidden text field through rjs. I have a form. <% form_tag :action => "upload" do %> <%= file_field_tag :zipfile %> <%= submit_tag ...
1
vote
1answer
111 views

Ajax and Json with Rails

I followed Hartl's Rails tutorial where he does Ajax using RJS and sending javascript in the response to be executed on the client side to edit the DOM. But what do you do if you want just JSON sent ...
4
votes
1answer
87 views

Bug in r.js for recursive function?

I am currently trying to optimize the current jQuery (development version 1.8.1) with r.js. This happens during asset compilation in a rails project with the gem requirejs-rails. I think I ...
0
votes
1answer
113 views

Alternatives to RJS for Rails

I have heard that the idea in RJS of passing to the client js code instead of json or html disturbs many people and so they avoid RJS. Given that what exactly would be the idiomatic way to do ajax ...
0
votes
1answer
439 views

render :update do |page| is not working correctly with Rails3.X

I have the following in my routes.rb : match 'admins/approve' => 'admins#approve', :as => :admins_approve, :method => :post In my admins_controller.rb I have : def approve render ...
0
votes
0answers
35 views

Rails 3.0.9 Nested multi model Forms with .js.rjs

I've found and tried this example about nested multi model forms: http://asciicasts.com/episodes/196-nested-model-form-part-1 That's just I need, and all I've found about this theme, but there is a ...
0
votes
1answer
79 views

confirmation dialog box in rjs

I have the following code in my rjs template which displays a confirm box: page << "r = confirm('Would you like to link this newly created author to the book?')" I tried `page << "if ...
1
vote
2answers
193 views

The modification of the checked attribute of a checkbox doesn't work correctly

I have a rails view that displays a checkbox. When I click on the checkbox, a rjs function is called in my controller and it checks or unchecks the checkbox according to its previous state. In the ...
0
votes
1answer
65 views

rjs - ruby loop inside page.alert

I have the following code in my rjs file: if @books_by_author.count != 0 page.alert("The following books reference the author you want to delete: \n # here i want to list all the books ...
0
votes
2answers
197 views

Rails can't see .rjs file

I'm trying to learn how to use AJAX in my rails apps so i've decided to start with something simple. I have a blog app on which user can vote on any blog post. Here is my code for posts#vote: ...
1
vote
0answers
30 views

jquery element properties is not loading in rjs file elements?

I am using rails3 , In my application auto complete-functionality is there. When users/new template auto-complete functionality working. users/new is a partial file also. If I want to call as a ajax ...
0
votes
1answer
218 views

resource to learn using RJS in Ruby On Rails

I try to learn RJS usage in Rails application but I could not find good resource on Web. There are some simple examples but not a vast tutorial that I need. Please suggest any if you know :) Thanks ...
0
votes
2answers
85 views

Select an option from drop down list using RJS

Using RJS: page[:greeting].replace_html 'Hello World!' replaces the text in the 'greeting' field with 'Hello World'. I have a drop down list and would like to select an option with a specific id ...
0
votes
1answer
61 views

unable to use `page.select` in render update inside controller

In my controller I am using render update,but I want to update only if div element if present. In order to check if div element is present, I am using page.select but its not responding with ...
0
votes
0answers
104 views

cannot embed ruby string in controller render update

I have a rails 2 app with the following in the controller class GrossingController << ApplicationController def my_method my_string = "this is a test string" render :update do ...
6
votes
2answers
3k views

Rails 3.2.2 not executing rjs

I'm following the book Pragmatic Agile Web Development With Rails 4th Edition, BUT I'm using Rails 3.2.2 instead of 3.0.5 as recommended in the book: ~$ ruby -v ruby 1.9.3p125 (2012-02-16) ...
0
votes
1answer
113 views

RJS : Retrieve the value of a text_field

I am using Rails 2.3 and I don't know how to retrieve the value of a text_field of a form in order to handle it in the rjs file. I searched on the Internet all day and I didn't find a solution. Here ...
2
votes
1answer
299 views

Backbone vs. RJS

Being some random rails dev, and getting around all those backbone/underscore javascript stuff… Backbone seems interesting, but in a functional point of view (I mean the way you can get your data ...
0
votes
0answers
177 views

Rails not rendering Response of Ajax Form

I am trying to submit a form and render the response via Ajax, yet rails doesn't render the result for some reason. My form: Index.html.erb <%= form_tag({:controller => "revenues", :action ...
0
votes
1answer
143 views

require.js when building including one certain module causes script to be lost

On my site I use require.js to manage my code, on the main page of my site there is alot of JavaScript with the data-main=MainPage.js. One of the libraries this page uses is the ace editor, this works ...
0
votes
1answer
82 views

How do i add this to rjs?

I have this command which i know is a bit off syntactically page << "$('.places').append('<%= escape_javascript(render(:partial => 'contact', :locals => {:contact => @contact, ...
1
vote
1answer
216 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 => ...
0
votes
1answer
132 views

RoR - image with link, error showing the ID in the url-for but not in the image_tag?

I have the following code in a partial: <%= image_tag(url_for(:controller => "campaigns", :action=>'coupon_preview_text', :id => campaign_id, :width=>width), { ...
0
votes
1answer
1k views

gmaps4rails map not showing when loaded dynamically using prototype

I have a view with 3 tabs each representing a view of the data (Table, Map, Charts). When I click on the tab it blinds up the view before if runs switch_view.js.rjs <%= link_to_remote ...
0
votes
1answer
106 views

Can't get rjs to work right, maybe issue with difference between link_to_remote and link_to with :remote => true

I am having problems setting rjs up and I don't know the right way to code this for rails 2.3.14 Are they (link_to_remote and link_to with :remote > true) the same or do they reflect rails versions or ...
3
votes
4answers
3k 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 ...
0
votes
1answer
125 views

Element.update rjs error while using link_to_remote in rails

I am using rails 2.3.2 I have a link_to_remote functions <%= link_to_remote "Comments ", { :url => {:controller => "blogs",:action => "fetchcomments",:id => blog.id}} ...
0
votes
1answer
166 views

Rails renders .rjs in chrome but .erb in firefox

I am in the view foo and have a remote form within it <%= form_tag(foo_path, :method => :post, :remote => true, :class=>'form') do %> when submitting the view some action happens and ...
0
votes
1answer
905 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
234 views

Loading data from database by Ajax - Ruby on Rails app

Sometimes at websites all comments or other data from DB is hidden by default. When user click at link like "Display comments" all comments from database are dynamically selected and placed under the ...
0
votes
1answer
257 views

How to Convert RJS Template to Coffeescript?

Does anyone know how to convert this simple bit of RJS code into coffee-script? page.call 'RecordSelect.render_page', record_select_id, render_record_select(:partial => 'list', :locals => ...
1
vote
1answer
172 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 = ...
0
votes
2answers
628 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 ...
2
votes
2answers
1k views

RJS Handler missing

I got a missing template error when I tried to achieve a task using RJS. All I want is to execute an RJS file on ajax call. But I am getting the following error. ActionView::MissingTemplate (Missing ...
0
votes
3answers
154 views

does not find rjs file

I am using rails 2.3.8 and I'll load a modal dialog box using a partial called _show_venue.html.erb. Inside this partial I add link_to_remote to edit each venue. _show_venue.html.erb :: ...
4
votes
2answers
195 views

how to use if condition in rjs?

I pass parameter with url called var which is containing value 'event'. I want to check this variable in rjs file and load a modal dialog box. Following is my code. page<<" if (:var== "event") ...
1
vote
0answers
238 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
174 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 ...
2
votes
1answer
127 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 ...
1
vote
1answer
105 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?
0
votes
2answers
780 views

What is Prototype's equivalent method to JavaScript's innerHTML property?

How can I retrieve HTML content using Prototype? Or how can I fetch HTML content using RJS?
1
vote
2answers
1k 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 ...
0
votes
2answers
255 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 ...
1
vote
2answers
608 views

RJS error: [object Error] in IE 8 on RJS response from rails/scriptaculous

I have a controller with: render :update do |page| page.replace_html 'some_id', :partial => 'some_partial' end It works fine in firefox, but IE throws an "RJS Error: [Object error]" Looking ...

1 2 3 4