Tagged Questions
-1
votes
1answer
21 views
How to submit a form with ajax if two parameters are set
I have a simple rails form and want to submit the form when the two parameters are set without the click of a submit button. How can i write a simple jquery ajax request to do this.
my form below is ...
2
votes
2answers
29 views
jQuery .on() not working with jquery-ujs
So I have a rails app that renders views via jquery-ujs. (data-remote in the URLs, then a load of js.erb files with things like:
$('#whatever').html('<%= j render("form") %>');
In my main JS ...
0
votes
2answers
66 views
How to update radio options through Ajax in Ruby on Rails?
I am trying to update a list of radio options depending on the person that a user selects in a form.
_fields.html.erb:
<%= f.label :person %>
<%= f.select(:person_id, ...
0
votes
0answers
24 views
Select2 nested json parsing not working Rails3
I'm trying to make select2 working with my ajax loaded json data with nested attributes.
I wanna get something like this http://ivaynberg.github.io/select2/#multi.
eaxmple json:
[{
id: 1,
name: ...
0
votes
1answer
37 views
Rails - AJAX/JQuery not working
For my application, I have projects where users can make comment (class Newcomments) postings. Right now it posts great but on page refresh. I am trying to use AJAX/JQUERY so that it will post with no ...
0
votes
0answers
24 views
Reload page, except for one partial
I have had an on going issue with a page... what I am trying to do is reload a page except for one partial on the page and leave it alone... pretty much a senior developer built this website so that ...
0
votes
1answer
27 views
Using best_in_place gem in 2 level nested controllers: [Raven] User excluded error: #<ActiveRecord::RecordNotFound
I use the gem Best In place for editing discussion topics and comments... It works for Discussion but for Comments it gives record not found error:
my routes:
namespace :school do
resource ...
0
votes
0answers
42 views
ajax returns JSON, and I also want to fire a js call
find.js
$(document).ready(function() {
$("#find_user #email").select2({
width: '400px',
placeholder: "Find user...",
minimumInputLength: 1,
multiple: false,
ajax: { // instead ...
0
votes
2answers
65 views
select2 AJAX'd to a model, configuration
So, I just discovered select2. Awesome. Now I'm trying to figure out how to use it, server side with ajax / json. All of the examples I see, everywhere, show using select2 with JSONP to retrieve ...
0
votes
2answers
39 views
How do I render my basic signup/login forms on the page using AJAX rather than re-directing?
Maybe I've just been staring at this too long, but I have a basic sign-up and log-in form that I built, and want to just render them on the same page in a div rather than redirecting to a new page.
...
0
votes
1answer
27 views
Rails/coffeescript/datatables, after changing views, need to refresh to reload
I'm sorry for asking this here as I typically find everything I need to ask, but I think my problem is I do not know really WHAT to search for to get the answer. Here goes. I am playing with ...
0
votes
1answer
55 views
Like/Unlike Without Ajax or jQuery on Rails
I'm trying to implement a simple like/unlike function. All the examples I have seen here seem to apply to ajax or jquery. I.m still a beginner and I don't fully understand either yet, I just want a ...
0
votes
0answers
46 views
Rails 3.2: Kaminari pagination, next and previous links don't work with ajax
I used kaminari to apply pagination to a list of items. Basically, the items are books and I would like to load each page using ajax.
I have a model book and partial for books, _books.html.erb, ...
2
votes
0answers
42 views
json not responding from the model the way I'd like to think - autocomplete select2 with rails
So, I just discovered select2. Awesome. Now I'm trying to figure out how to use it, server side with ajax / json. I'll get right to the nitty gritty. json returns a value, but the searchbox ...
0
votes
1answer
41 views
Creating Dynamic forms for awesome nested set association with in Ruby on Rails
Hi i am kind of rails newbie and i have two models Category and Product
class Category < ActiveRecord::Base
attr_accessible :name, :parent_id
has_many :products
acts_as_nested_set
...
0
votes
1answer
55 views
jQuery + Rails: variable selector doesn't work
I am trying to record the score of a specific route after the user clicks on a star.
$('.ratings_stars').on('click', function() {
var score=$(this).attr("data-score");
var ...
0
votes
0answers
47 views
How to display a score summary in rails using jquery and display it back to the website? [closed]
I am new to Rails and jQuery and don't get my head around on how to display the sum and average rating of the score for each route. As for below example it should show 2 scores for route 1 with an ...
0
votes
2answers
60 views
Rails, Popups, Ajax deletes and stopPropagation
I have a rails project that has a standard rails delete link inside a popup.
I have multiple popups on the page so I have a hide action attached to the body (onclick) and a stopPropagation event ...
1
vote
2answers
49 views
Rails 3 refresh page with AJAX
I have already tried reading numerous articles and posts on the subject, but I am still bewildered and can't figure out what I need to do. Can someone explain exactly what I need to do?
I have a ...
0
votes
0answers
53 views
How to Implement Ajax in Rails: Multiple Drop-downs with collection_select
Trying to implement ajax to dynamically populate drop-downs in my devise registration form, with collection_select, but it's breaking on page-load.
The ajax request is not firing, thus leaving one ...
0
votes
0answers
73 views
Submitting a form via AJAX is making two calls instead of one
I have an event listener for a form button that makes an AJAX call to a method in my Rails controller. The issue I'm having is that this._form.submit() is somehow making the AJAX call twice so in ...
5
votes
1answer
136 views
How to trigger download with Rails send_data from AJAX post
I'm trying to use send_data to return a PNG image as the response for a ajax post request. How do I get the browser to trigger a download on the success callback?
Details
I'm generating a large ...
0
votes
0answers
110 views
Three-step rails Dynamic Dropdown using collection_select, jquery and ajax
Assume a baseball-themed app, which allows a player to track their stats.
At registration, a user will select their city, which will dynamically filter league options for their selection ...
1
vote
1answer
28 views
Radio button problems ajax rails
I am endeavoring to create a the option for users to select an image as the album cover for the image's index view (@image.each do |image|). However, for this to be effective, the radio button's for ...
0
votes
2answers
31 views
Post parameters in ajax to my controller?
I have a few buttons on my index page that are not in a form and that act as filters for markers on a map.
I am trying to post the filter choices as parameters to my index action.
How do I do ...
0
votes
0answers
16 views
Multiple paths to Create ( RAILS, jquery)
this is my first attempt at ajaxy multi-step forms, and I'm sure I'm doin it the hard, wrong way.
I have a Challenge to which I've added 5 javascript "pageviews" which guide the user to fill in the ...
0
votes
2answers
43 views
How to access response of ajax request, fired by clicking on a link?
I have a link, clicking on which an ajax POST request is fired up.
I do this:
$('a#create_object').click();
This fires an ajax request. The code for this ($.ajax({...})) is written somewhere in ...
0
votes
1answer
33 views
content_for in Ruby on Rails with ajax
I have a problem with the content_for in RoR, I have a remote call to the controller
it contains the javascript update.js.erb render a partial _update.html.erb and within the partial content_for where ...
1
vote
1answer
532 views
how to show selected value of dropdown into textbox using jquery/ajax
<% form_for :credit_card, @cc, :url => '/credit_cards', :method => :post do |f| %>
<%= f.hidden_field "job_id", :value => params[:job_type_id] %>
<%= f.hidden_field ...
1
vote
2answers
60 views
Rails render ajax error
I've a index.html.erb like that
<div id="carte_items">
<ul id="nav">
<li id="category_14" class="category-group">
<p class="category">Pizzas tradicionais</p>
...
0
votes
0answers
29 views
jQuery Masonry and AJAX formatting
When I use AJAX to filter my jQuery Masonry boxes on a page, the formatting doesn't adjust. I tried following the response to this question: jQuery Masonry and Ajax-fetching to Append Items Causing ...
1
vote
1answer
52 views
Passing a the variable to my erb code
In my ruby on rails application I have a view that lists some recods.
I also have some filters on the page with javascript onclick events on them that retrieve their ids and filters the records on ...
0
votes
1answer
47 views
How to validate a jquery autocomplete in my Rails App?
My very simple Rails App has a Model with two methods:
:From
:To
I use the awesome (Google Maps API) powered address-rails-picker app for the :to and :from in the form to automplete any location the ...
1
vote
0answers
83 views
Ajax return not firing Callback
I'm trying to troubleshoot some code that I did not write and I'm having a lot difficulty trying to figure out why an Ajax return is not firing a Callback. Here is the code that attaches the behaviors ...
0
votes
1answer
24 views
Migrate script from page to js file in Rails
I have the following script in show.html.erb page, in order to update my progress bar. However it uses jQuery, and since jQuery is just loaded at the end of my application.html.erb layout, I cannot ...
0
votes
1answer
87 views
Update progress bar in rails using jQuery
I'm a complete novice in JavaScript/jQuery and I believe it's a very simple question; however I'm not being able to accomplish it.
I have an asynchronous task being performed (by sidekiq) and it's ...
0
votes
0answers
41 views
Paperclip image doesnt display when rendering via Ajax call
I have seen issues where people have problems uploading an image via paperclip with Ajax, my problem is that when requesting a post for example via an Ajax call the image wont display, it has already ...
1
vote
0answers
35 views
rails radiobutton auto submit
I want to be able to set the :albumcover of the image object to TRUE or FALSE. How do I accomplish this with ajax so that it submits when the radio button is checked?
Thanks so much!
View
<% ...
0
votes
1answer
29 views
PHP data is to Ajax as RoR data is to X?
I'm learning about RoR, and prior to this, I was working on PHP and Ajax.
If I have a scenario with two divs, and user can click on either one (I have done some jquery styling so when user clicks on ...
4
votes
4answers
237 views
Mark when the user starts typing in a form
I want to add the user to a post's author list when the user starts typing in a form.
For example, when the user types any letter (or press the 'enter' button) in the form, I would call ...
0
votes
2answers
66 views
Rails ajax form not submitting from within another
I have a Rails 3.2 ajax form that creates a new Room for a Hotel. The new Room ajax form works correctly on the Room index page, but once I embed the new Room ajax form on a Hotel edit page, the form ...
0
votes
1answer
55 views
Ajax request failing Rails
I am a little stumped as to why my Ajax call is failing, It was working and cannot think of any changes that would have affected it. When i make the call i get an error in firebugs console that points ...
0
votes
0answers
37 views
How to access associated object id in ajax loaded form
Using Rails 3.2, how can I access the id of an associated object within an embedded form loaded by ajax?
For example, I have an object called Hotels. Each Hotel has_many Rooms. When I edit a Hotel I ...
1
vote
0answers
80 views
Ajax requests stop working after many successful requests
In my Rails + Devise app I have a table of links to multiple "contacts", each being a simple jquery $.get AJAX request which calls Contact#show.
Inevitably after clicking anywhere from 3-25 of the ...
0
votes
2answers
24 views
Ruby on Rails JQuery not loading at appropriate time
I have problem which I can't figure out. Here is the code
$('.new').click(function(e){
e.preventDefault();
$('#y').load('/y/y #x'), function(e) {};
showadd(); // function to ...
0
votes
1answer
26 views
Document not found for class Pet with id(s) pets_you_liked
routes.rb
post 'pets/pets_you_liked' => 'pets#pets_you_liked'
pets.js.coffee
$.ajax
type: 'POST',
data: {pet_id: pet_id},
url: "/pets/pets_you_liked"
rake routes
rake routes ...
0
votes
1answer
189 views
Rails change boolean value with checkbox and jquery ajax
I am new to rails and trying to change the value of a boolean via a checkbox and using jquery ajax:
<%- @tasks.each do |task| %>
<div class="task-wrapper">
<%= check_box_tag ...
0
votes
1answer
44 views
Rails and jQuery: saving states in sessions
I'm trying to save the state of a jQuery toggle in a Rails app with little success. How would I store it in a session? Or would I store it in a cookie? Thanks for your help.
Here's the jQuery that ...
0
votes
3answers
47 views
Why does my js.erb doesnt work
I have the following code:
comment.js.erb
alert("Alert");
application.js
jQuery.ajaxSetup({
'beforeSend': function(xhr) {xhr.setRequestHeader("Accept", "text/javascript")}
})
...
1
vote
1answer
82 views
Rails 3 remote link click triggers different request on second click
I have a Rails app that was working well until I upgraded ruby, rubygems, and my gems.
Almost all of my links are remote links. When I make the first request by clicking on one of these links, ...






