Tagged Questions
3
votes
1answer
26 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
4answers
55 views
Javascript - set input field to 0 when clicked
I have list of input fields within a form tag
<div class="angefragte_stunden_<%= hour.id%>">
<%= h.text_field :angefragte_stunden %>
code output =>
<div ...
0
votes
1answer
19 views
Display clicked image in different div Ruby on Rails
I have some images. When an image is clicked I want to get that image displayed in a different div. Been struggling with how to solve this. This is what I've got so far.
<% @user.images.each do ...
0
votes
2answers
35 views
Create action is called by every button (not only “submit” one)
I have a form for transaction, with some text and select fields. There is a text-field date, where I use jQuery.ui.datepicker. I've hidden text-field and use buttons instead ("today", "yesterday", and ...
0
votes
1answer
48 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
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
35 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
1answer
204 views
Coffeescript unexpected terminator error
I have this in my /assets/javascripts/leads.js.coffee
jQuery ->
getRowColour = (status) ->
switch status
when "rejected" then return '#FFA500'
when "confirmed" then return ...
0
votes
1answer
49 views
Backbone and Coffeescript “this” reference issue
I have a problem with the "this" reference on Backbone with Coffeescript, this is a method which shows information of an artist:
show: (id) ->
self = @
if @collection
artist = ...
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
30 views
How to use inline :confirm option for html helpers with AJAX calls?
I am trying to have an AJAX implementation of record deletion associated with a button. The problem is that ajax:success event doesn't seem to be triggered in such case.
I have implemented the ...
0
votes
1answer
115 views
Oauth Google client-side authentication from a pop-up using javascript(coffeescript/jQuery)
Im using oauth gem in my rails application.
gem 'omniauth-facebook', '1.4.0'
gem "omniauth-google-oauth2"
Facebook client-side authentication is working properly. I followed,
...
0
votes
1answer
47 views
Configure Ruby on Rails to generate .js not js.coffee [duplicate]
Is there a way to configure ruby on rails to generate .js files and not .js.coffee when generating a new controller. I don't want to use CoffeeScript, and it's annoying having to refactor all my ...
1
vote
1answer
43 views
coffescript is giving error in my project which before works fine
I am looking this video http://railscasts.com/episodes/258-token-fields-revised
This is my coffescript code
jQuery ->
$('#employee_material_asset_tokens').tokenInput '/assets.json'
theme: ...
0
votes
2answers
55 views
Hiding my rails div using JS
My products view:
<a href="#" id="show_metrics">Show Metrics</a>
<div id="metrics" class="hidden">
<%="Number of Primary Products: ...
0
votes
1answer
89 views
Trying to check a specific checkbox when the textbox matches the ID number of a model in rails
I have the following three tables:
Student, Register and a join table called Student_Register.
To make it easier to understand, here is the model for each:
class Register < ActiveRecord::Base
...
2
votes
1answer
58 views
CoffeeScript keeps triggering Error when I'm getting a 200 response back?
I'm trying to do a remote: true form and I have it all setup, and when I click the submit button, the error action triggers every time. This is how my CoffeeScript is setup:
$(document).ready ->
...
0
votes
1answer
38 views
Coffeescript function on a rails page rendered via JS
this is a small issue and i am sure i am doing something wrong. I have a page that is being rendered via a JS response from one of the controller actions in Rails 3.
When this page renders it has an ...
0
votes
2answers
127 views
How to Reset dropdown value on “clear search”
I have a drop down in a search form and a clear search button. I want the selected values in the dropdown to be cleared upon clicking on the button. The coffeescript code included below all works ...
1
vote
2answers
64 views
Updating Rails Params with Javascript
Is it possible to change the value in the Params hash when a Javascript function is called?
I have a hidden Div, say DIV1 that becomes visible based on the selected value in a select field, within ...
0
votes
1answer
143 views
Rails path-helpers doesn't work in js.coffee.erb
In my Rails 3.2 app (Ruby 1.9) I get following error when using path helpers in Coffeescript.
undefined local variable or method `new_user_session_path'
In my partial _usermenu.html.haml that works ...
0
votes
1answer
112 views
Backbone on Rails how to add a model to a collection from different views?
I'm developing a Rails app using Rails 3, and the backbone-on-rails gem.
I have a backbone route which shows ProductTypes. It has a backbone view for the list, and a view for the form, so the usar ...
0
votes
0answers
66 views
jquery coffeescript live() conversion
Got caught in a jquery update that got rid of .live(). There are a few posts out there that talk about using on() and it works fine, except for ajax loaded pages.
They then talk about delegating and ...
0
votes
1answer
111 views
angularjs synchronise $request to update database before $request.query() is fired on index view
My index view is pulling all the models from database before the update is carried out is there any way to make sure these actions are synchronised. the model is updated and shows up in index page ...
0
votes
1answer
40 views
jQuery Loading Strangely in Rails 3
I have a Rails 3.2 application with a standard asset pipeline - that is, controller has its own Javascripts defined in separate CoffeeScript files.
I noticed today that in development mode (when all ...
0
votes
1answer
201 views
Token limit in Jquery token input
This tokeninput is from http://loopj.com/jquery-tokeninput/
I see the tutorial from http://railscasts.com/episodes/258-token-fields-revised
As i am using it in many places i need sometime only one ...
1
vote
1answer
73 views
How to stop rails appending www.html.com to beginning of URLS
I have implemented some coffeescript that allows my table rows to be links.
The issue I am having however is that my app seems to be adding http.com// into the beginning of my Job URLs so instead of ...
0
votes
0answers
47 views
JQuery to Coffeescript Translation - Setting and Calling Functions [closed]
I am currently trying to translate the following jquery code into coffeescript:
JQuery (this code works):
$(function () {
setTimeout(updateComments, 5000);
});
function updateComments() {
...
0
votes
0answers
82 views
Coffeescript expand/collapse starting state
I've built on-command expand/collapse capabilities into my app through the following solution I adapted from a post I saw somewhere. The problem is, this solution gives no control over which state the ...
2
votes
3answers
191 views
use javascript in rails 3.2 without coffeescript
I'm using Rails 3.2, It's set up for coffeescript. I know Coffeescript is an awesome language and it's not too hard to learn, but i'm JUST starting to wrap my head around Javascript and jQuery. So my ...
0
votes
2answers
137 views
Rails 3 coffeescript controller association?
Alright, I'm a JS / JQuery / Coffeescript noob. This is probably easy points for someone.
Having successfully implemented RBate's Nested Form Model railscast, I am attempting to reproduce this in a ...
0
votes
1answer
111 views
Updating extra column in a has_many, :through table with Coffeescript
I've got a rather simple setup here: A Doc model, a Publication model, and an Article model.
doc.rb
class Doc < ActiveRecord::Base
attr_accessible :article_ids,:created_at, :updated_at, :title
...
1
vote
1answer
179 views
Live form validation using with jQuery/Coffee AJAX Rails
Okey, so I have this problem... And I've had it for like weeks. I'm working on a school project and I'm supposed to make a live form validation using Ruby on rails and ajax (jQuery/Coffee). I've ...
0
votes
1answer
82 views
source ~/.vimrc working in file but not automatically source coffee
I have added the coffee syntax and indent plugin for vim. Here is my ~/.vimrc:
colorscheme peachpuff
syntax on
filetype on
source /Users/(myusername)/.vim/vim-coffee-script-master/indent/coffee.vim
...
-2
votes
1answer
160 views
JQuery highlight won't work
I'm using JQuery to use a highlight effect as discribed on the docs side of JQuery itself.
JQuery HighLight
But when using this on a tr or td element, I'm getting this exception:
Uncaught TypeError: ...
0
votes
1answer
43 views
How can I see the compiled coffeescript in Rails 3.2.1?
I'm using RubyMine, and wondered if there was any way to see the Javascript that Coffeescript compiles to while I am developing (prior to the page load).
It's not essential, I was more curious than ...
0
votes
2answers
109 views
Adding content to an element created dynamically in Backbone with Rails
I have a Backbone View in Rails 3 where the initialize has a line which dynamically creates a div with a class like this
initialize: () ->
$('body').append('<div class="new"></div>')
...
0
votes
1answer
105 views
Rails jQuery autocomplete using coffescript
I am trying to get auto complete to work using the jquery UI, but it doesn't seem to be triggered.
The hashtag.js.coffee is being loaded into the application.js. There are no errors being thrown in ...
0
votes
3answers
485 views
Ajax call in rails 3.2.3 with will_paginate gem
Im trying to implement an Ajax call with the will_paginate gem, I found this guide http://ramblinglabs.com/blog/2011/11/rails-3-1-will_paginate-and-ajax which seemed like a simple solution, though it ...
0
votes
2answers
188 views
New Coffeescript file interfering with other JS
In my app I use the below code to give expand/collapse capabilities.
In one of my .js files:
$(document).ready(function(){
$('.row .bundle').on('click', function(e) {
...
1
vote
1answer
140 views
parameters are not passing to the controller Rails3 + coffeescript + ajax
I'm trying to implement a sorting list with Rails3 and coffeescript. I had a routing issue earlier and was able to solve it with your generous help, so now I have a different issue, My data parameter ...
0
votes
1answer
166 views
Ajax update with coffeescript + rails3
I'm following a sortable list tutorial in here , but unfortunately the article is bit old (but very useful) and I'm having some issues when try to implement it with
Rails 3.2.x
coffeescript
Jquery
...
1
vote
1answer
316 views
Possible to use ERB/slim template instead of EJS (JST) after Ajax update?
I've seen a lot of questions around this topic but no definitive solutions. I have a Rails 3.2 app that leverages ERB/slim and Coffeescript/EJS/Backbone. I inherited this codebase so some of these ...
2
votes
2answers
496 views
rendering a partial Rails3.x + coffeescript
I have the following requirement. I have a 'school' drop down and as the last options I have add new school, so if the user selects that option I want to load the new_school form as a partial via ...
1
vote
1answer
334 views
My ajax post with coffeescript is not handling success callback
I'm trying to do a single post using coffeescript and jquery, but my script is not handling the success callback.
*cards_controller.js.coffee*
if $('form').attr('action') == '/cards' alert "Hey ...
0
votes
1answer
389 views
Backbone and Rails 3 Uncaught TypeError: Cannot call method 'on' of undefined
I am developing an application and I am following this rails cast:
http://railscasts.com/episodes/323-backbone-on-rails-part-1
Everything seems correct except that I keep receiving an error when I ...
0
votes
1answer
120 views
Render form from view in a template
I'm evaluating backbone.js, backbone-forms and Rails, and I have some problems ...
I have a view where I create a new model and a form, and I want to display this form with other html elements, so ...
0
votes
0answers
123 views
coffeescript file suddenly stopped working rails 3.2
I'm having an issue with rails and the asset pipeline. I was writing coffeescript in my users.js.coffeescript file, and it worked fine. However after I merged my changes from my branch back to my ...
0
votes
1answer
228 views
Jquery-ui datepicker only appears after textbox focused second time
For some reason, when I load the partial and I click the textbox to bring up the datepicker I have to click out of the textbox then click back in the textbox before the datepicker appears. Can anyone ...
2
votes
2answers
118 views
Set of CoffeeScript/JavaScript classes and methods available to rest of Rails app
I'm using Rails 3.2.9. When I add CoffeeScript code to a .js.coffee file in the /app/assets/javascripts directory, I get the resulting JavaScript in all of my webpages. The problem is all the ...




