Tagged Questions
0
votes
1answer
34 views
rails3 disable spinner for particular ajax call
My project having lot of ajax links and I might to implement spinner for every ajax request.
I have used ajaxStart and ajaxStop callbacks globally in my application.js for all ajax request.
my ...
0
votes
1answer
25 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 ...
3
votes
1answer
28 views
Rails - Why jQuery Doesn't Load After Submitting My Form Remotely
For the sake of simplicity, I have a form that updates a partial. Nothing special there. Within the partial, I have a jQuery sortable list. Before updating the form, I can drag things around in the ...
0
votes
0answers
45 views
Blueimp file upload issues
when i run my app, fileupload function shows error
Uncaught TypeError: Object [object Object] has no method 'fileupload'
$(document).ready(function(){
$('#datepicker').datepicker();
...
0
votes
1answer
37 views
How to make link to point to view?
In my application.html.erb file I have some links and <%= yield %>. What I want is when a link is click, a view to be rendered in the <%= yield %> field without refreshing the whole page.
So, ...
1
vote
1answer
37 views
Insert content of div into Rails record
I've got a list of editable <div>s on a form in Rails like so:
<div id="article14" style="display: block;">Content one</div>
<div id="article15" style="display: ...
1
vote
1answer
23 views
roundabout in Jquery is not working
I am using Jquery to animate images. But i am getting the following error
TypeError: $(...).roundabout is not a function
My code is like as follows.
<div class="gallery" >
<ul>
...
0
votes
1answer
30 views
How to show the selected multiple values in select_tag
i have used select_tag for multiple select
<%= select_tag "gen", "<option>ACT</option><option>ADV</option><option>ANI</option>
...
1
vote
2answers
25 views
Saving application user interface options with rails
I'm using a bit of javascript to let users collapse and hide 8 different tables on the main index page.
$(".priority-header").click -> //on click
$(this).next().toggle() // Hide Table
...
0
votes
3answers
41 views
Javascript not loading latest submitted data
I recently asked this question: Javascript Form Submition?
Now I'm trying to work out why, after form submission, the create.js.erb doesn't load the latest data (the data which was submitted).
If I ...
0
votes
0answers
47 views
Ruby on Rails: Inserting .js file in asset but still getting no method
This maybe a long shot question to ask, but its worth a try...
I have a .js file that I inserted into my vendor/assets/javascript folder and then in my application.js in the apps/assets/javascript ...
1
vote
2answers
63 views
How to make bootstrap & jquery working together in rails 3.2.12 app which has rail engines?
We are working on a rails 3.2.12 apps which has multiple rails engines. There are nav bar and user menu in main app. The functioning module is in rails engine. One of the engine is called customerx ...
0
votes
0answers
29 views
Jquery datapicker and Javascript stop working after adding bootstrap (gem bootstrap-sass) in rails 3.2.12 app [duplicate]
We added bootstrap (with gem bootstrap-sass) to our rails 3.2.12 app. The format is better. However we notice that all the js features, such as inserting text boxes for new data or inserting a partial ...
0
votes
2answers
83 views
Rails 3 Image upload form submitting with http instead of AJAX
I am working on a form to submit it by AJAX instead of http.
This is the form :
<%= form_for(:image, :remote => true, :url => {:controller=> 'questions',:action => ...
0
votes
2answers
88 views
Send jquery array via ajax into rails controller
i need to send one array into rails controller via jquery ajax
jquery CODE
$(document).ready(function(){
var counter = 2;
$("#addButton").click(function () {
var newTextBoxDiv = ...
0
votes
2answers
67 views
Ruby on rails: Easy way to show text box when a certain dropdown is selected
Right now,
I have the below jquery, css and html code which works the way i want. Where If the user selects a dropdown a certain textbox shows. But how can I do it easily in rails?
HTML
...
1
vote
1answer
32 views
Rails & Ajax / Async loading partial
I have the following working very nicely, loading a partial on click of a link. I'm having trouble however modifying this so that the partial loads on document ready or similar. I basically want to ...
0
votes
1answer
28 views
How Render one page to another page in ruby on rails in jquery(Not a PatialView)
How to Redirect One Page to another in Ruby on Rails Using Jquery Event, it is not a partial view it is Another controller view please help to solve my issue .....
0
votes
1answer
34 views
jQuery animation: How to move a value from the left to the right and back?
I would like to move a value in a class from the left to the right and back after clicking on any star. Below picture may help to imaging what I am trying to achieve. In this case I want the "4.0" ...
0
votes
3answers
50 views
How to use jQuery hide function in my Rails application?
How to use to jquery hide api in my rails application with the following block of code .. especially for the close button...
<div class="loginwrapperinner">
<div class="widgettitle">
...
0
votes
1answer
60 views
alert close button is not showing in jquery .html() in ruby on rails
I am using AJAX crud operation in my rails application with twitter bootstrap. When i click on submit post then success flash message is showing but along with that close button is not showing.
here ...
0
votes
0answers
47 views
Rails Jquery chained selects
I'm trying to setup a jquery chained select when a create a new product
Gender
Category
Subcategory
the gender and category is chaining, minus the subcategory that dont appear!
please someone ...
0
votes
2answers
68 views
Why jQuery won't be working?
After I executed this command.
bundle exec rake assets:precompile RAILS_ENV=production
Now, jQuery doesn't work anymore:(
It used to work fine until executing the command.
After that, if I type ...
-2
votes
0answers
12 views
How to create a custom rable script to fit format [closed]
I would like to create a format like this
[{"key": "10", "title": "Folder 1", "folder": true, "children": [
{"key": "10_1", "title": "Sub-item 1.1", "children": [
{"key": ...
0
votes
1answer
49 views
Render partial with coffeescript
I'm trying to trigger a partial reload in the drag & drop UI when an element is released. The following code resides in my projects.js.coffee file. I'm not sure how to dynamically trigger ...
0
votes
2answers
44 views
Time.now to update in view without page refresh (javascript)
I'm trying to simply display Time.now on a page and have the minutes change using some sort of Javascript.
Surely this is really easy, however I can't seem to work out how I'll start to go about ...
0
votes
4answers
29 views
Rails form - Only submit the visible element (2x element with same id)
i got this:
A form with 2 select fields, both of them have the same id. I want that only the visible one gets submitted. Is there an solution for? Like adding an attribute to the element so that ...
0
votes
1answer
38 views
Rails 3.1 Asset Pipeline Javascript - specifying page load though jQuery ->
This is causing me a lot of frustration. I'm hoping someone can help me out.
In my application.js file I have the following:
//= require jquery
//= require jquery_ujs
//= require ...
0
votes
1answer
22 views
What is the black dot beside a jquery sortable element?
I'm using JQuery sortable for the first time, and I have a sortable list of elements all working ok (widgets, with a header and some internal form etc workings).
I've defined a header element as a ...
0
votes
1answer
33 views
Why does jQuery stop working after precompiling if I mess with js files in assets?
I created new.js in assets/javascripts/ and added this into views/layouts/application.html.erb
<%= javascript_include_tag 'new.js' %>
Then I executed
bundle exec rake assets:precompile ...
0
votes
1answer
32 views
How can I add MouseOver action to this view?
I have an ajax button just like this now.
<% if current_user.following?(user) %>
<%= link_to(unfollow_user_path(user), :remote => true, :class => 'btn') do %>
Now Following
...
0
votes
1answer
49 views
Fancybox and gmaps4rails not working on heroku
I have a Ruby on Rails site on Heroku which uses both Fancybox for images and Gmaps4Rails for showing a map with marker. Locally everything works fine, but on Heroku both Fancybox and Gmaps4Rails ...
0
votes
1answer
39 views
Changing Multiple select fields in ruby on rails
I have a two f.select fields in my form with the same object id. I am changing these fields by selecting the parent field using javascript and CSS.
<%= f.label :Service_Phase, 'Service Phase' ...
0
votes
1answer
25 views
Unable to use jQuery with server-side Rails widget
I'm creating a widget, for which I have initialized jQuery like so:
# widget.js
(function() {
var jQuery;
var root_url = "<%= root_url%>";
if (window.jQuery === undefined || ...
0
votes
1answer
38 views
Display new value based on selected Ruby on Rails
I want to display the email for the selected person when selected. This is what I've got so far:
html.erb
<%= select_tag "", options_from_collection_for_select(Person.all, :id, :name), :id ...
0
votes
0answers
43 views
Rails order and kaminari pagination
I am using kaminari gem for pagination in my rails 3 application on my album controller
@albumcomments =@album.comments.order(:created_at).reverse_order.page(params[:page]).per(4)
and I am ...
0
votes
1answer
57 views
Why jQuery won't work on rails?
I've done this command
bundle exec rake assets:precompile RAILS_ENV=production
Now, loaded jQuery won't be started when page is loaded:(
It used to work fine before precompiling...
What could be ...
0
votes
1answer
51 views
How do I generate a 'live preview' of a textbox?
Just like on SO when typing a question, I see the live version included in a box below the textbox - or on Github, I can simply go to 'preview' without saving the record, how do I achieve that with ...
0
votes
0answers
42 views
Facebook App Request Dialogue not being triggered after Ajax load (Rails Turbolinks)
I cannot figure out how to get the Facebook javascript to load after a click event, which triggers an Ajax request with Turbolinks.
I got the rest of my Javascript to work using, but this is just not ...
0
votes
1answer
64 views
Using Javascript in Ruby on Rails
I have a drop-down list where you can select a person.
<%= select_tag "person", options_from_collection_for_select(Person.all, :id, :name, 1) %>
When a person is selected I want to display ...
0
votes
1answer
69 views
No ajax working with simple form client side validations in rails
I'm experiencing an issue where validations do not happen live with the form, they only show up after the user hits submit. I'm using the simple_form gem with client_side_validations and ...
1
vote
1answer
37 views
Reapplying focus to a replaced DOM element
In my app, lots of DOM elements using jquery-ujs. This is fine for the most part.
Occasionally, I have a form element that gets replaced whilst having focus. I want to be able to persist the focus ...
2
votes
2answers
48 views
using jQuery html() doesn't retain css?
I have the following html (fiddle link)
<div class="thumbnail_follow" id="follow_btn-2">
<a class="btn btn-primary" data-method="post" data-remote="true" ...
0
votes
1answer
54 views
how to remove one js file from bootstrap?
How do I block one JavaScript file from the gem? I'm using the twitter-bootstrap gem. When the rails application loads, the gem will load all the JS files, so I want to block scrollspy.js from ...
0
votes
2answers
52 views
Replacing a table row via JQuery
I have having issue replacing a row of a table. I am trying to remove the row then append the new row via a rails partial to the table. the new row is appended, but the old row does not get removed. I ...
0
votes
1answer
27 views
Repeat Forms Rendering in Rails
I have a rails nested form like this one below. What I'd like to do is to automatically render a certain quantity of phases forms depending on the value selected by the user on my main challenge form.
...
1
vote
2answers
36 views
Pagination Ajax in Rails not working consistently
I have a rails app which I'm using will_paginate and ajax to paginate the the records. I've read where the latest version of js/jquery depreciated the live() function so use on() or bind().
Now ...
0
votes
1answer
56 views
Rails and signature pad from Thomas J Bradley
im using rails + jquerymobile + signature pad (http://thomasjbradley.ca/lab/signature-pad/)
my problem is to Converting to an Image(http://thomasjbradley.ca/lab/signature-pad/#images)
when im ...
0
votes
0answers
47 views
Rails Ajax Live Search
I'm using a simple search method to retrieve results in my rails app. I'd like to incorporate AJAX to search records live and have them display in the results. I'd also like to include pagination.
...
0
votes
2answers
93 views
jQuery not working after deployment to Site5
I successfully deployed my app to Site5 - and as I started to play around on it, I realized that not all of the jQuery was working. Specifically, anything that involved grabbing information from Ruby ...



