0
votes
1answer
22 views

coffeescript jQuery - how to refactor this (noob) approach?

after starting to learn some coding I did this (very ugly, non DRY) star rating switch with bootstrap in a rails4 app. I already did the codeschoool coffeescript tutorial, but it seems ruby is a ...
0
votes
2answers
31 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
21 views

How to appending a Form_For block to a Target div with in coffe.erb file?

Here is what I want to accomplish: Let user enter an home address via a form Return the results from an ajax call on the page Have a button on each result that allows me to save an attribute of that ...
1
vote
2answers
36 views

Why do coffeescript/jquery functions not trigger on DOM elements loaded via ajax, and how to fix?

In a Rails 3.2 app I have a coffeescript function that toggles a css class when a link is clicked. #coffeescript jQuery -> $(".toggle-link").click -> $(this).toggleClass "selected" #view ...
1
vote
2answers
37 views

Dynamically insert ruby generated HTML

I have a form where a user can elect to create more input areas (to provide more information). I have a link the user will click on and then the extra form inputs will be created. I'd like to use ...
0
votes
1answer
40 views

js.coffee.erb throwing an error due to å æ ø character fetched from DB

Env: Rails 3.2.11 app In assets/javascript I have this file home.js.coffee.erb : jQuery ($) -> $.supersized # Functionality slide_interval: 3000 # Length between transitions ...
1
vote
1answer
34 views

Can't Run CoffeeScript file [Rails]

After Putting this code in clients.js.coffee and refreshed my browser nothing happened , then I restarted by local server and also nothing happened, What should I do ? clients.js.coffee jQuery -> ...
2
votes
1answer
90 views

ExecJS coffee script not showing line numbers for compile errors (Rails asset pipeline)

In one of my Rails apps, ExecJS is not showing line numbers for coffeescript compilation errors. My compile error message will look like this: ExecJS::RuntimeError in Referrals#new Showing ...
0
votes
0answers
40 views

Rails Fullcalendar add event modal doesn't clear data for 2nd add

I have a Rails app using the jquery Fullcalendar. I have a modal to add time to the table Events. The modal shows up fine and you can add an event. But, when you add a 2nd event, the modal opens ...
0
votes
2answers
51 views

Why do I get a cross-site scripting warning with Rails?

In my Rails application's view template I have to assign an instance value to a CoffeeScript variable. I did something like this: :coffeescript 44 @selected_tab = "#{@tab}" It works fine, but I ...
0
votes
1answer
44 views

CoffeeScript - Unmatched OUTDENT

I've been trying to pass my working javascript code into CoffeeScript but i can't get pass this error: unmatched OUTDENT on line 55 This is the coffeescript code ...
0
votes
1answer
32 views

“unexpected INDENT” in Rails Coffescript after Ruby version change

The Original Problem Changed ruby version (1.9.3 > 1.9.2) and suddenly all coffeescripts started yielding unexpected INDENT. I've triple-checked for spaces/tabs inconsistency on files, and this is ...
1
vote
1answer
146 views

Binding Angular.js actions to Ruby on Rails actions

I've been using rails a while and am starting to fiddle around with integrating Angular.js. To get myself going, I'm making a simple (you guessed it) todo app. In my rails controller, I've made a ...
1
vote
2answers
31 views

Non global coffee script and asset pipeline

I have a coffee script user.js.coffee, that is only used in certain views. I achieved this by using the following answer: http://stackoverflow.com/a/6795533/784318 Now I have excluded the script ...
0
votes
1answer
41 views

Use ajax to query database for presence of item. Rails 3

I'm trying to query our database on the .click function. I can alert(val) so that's working. But I'm trying to figure out how to go to the database and find out if a record in Discount table exists ...
1
vote
1answer
28 views

Jquery for changed field but also initial load

I have Rails app with the following jquery (coffeescript) code: woassets = $('#workorder_woasset_id').html() $('#workorder_location_id').change -> group2 = $('#workorder_location_id ...
0
votes
1answer
55 views

coffescript(toggle function) with rails only works after page reload

jQuery -> $("#toggle_button").click -> $("#toggle_answer").toggle() I have to refresh the page every time once to get the toggling to work as intended. If I do not refresh the page it ...
0
votes
1answer
23 views

Coffee on Enter Keypress Repeatedly Sends PUT Request

I have this coffeescript code that accepts an "Enter" keypress in order to submit a form through ajax $(".text_field.comment").keypress (e) -> if e.which is 13 $(this).blur() form = ...
0
votes
1answer
162 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
0answers
37 views

Rails - Select2 - Allow creation of choices

i am working on a rails project and we make use of select2-rails gem. I manage to install it correctly and implement in on a current drop down list i had. I added following lines in base.js.coffee: ...
0
votes
1answer
43 views

Proper way to perform AJAX call in Rails

I am currently performing AJAX in "oldschool php way": /home/index.html <%= button_to 'Get message', :id => 'get_message' %> <div id="message"></div> ...
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
34 views

Jasminerice with knockout

I can use Jasminerice (https://github.com/bradphelan/jasminerice) to test a class like: class @Survey constructor: (id) -> @id = id With the test: #= require survey describe "Survey", ...
0
votes
1answer
45 views

Multiple HighCharts on different pages

I have a coffeescript: chart = undefined $ -> chart = new Highcharts.Chart( chart: renderTo: "sales " type: "line" ...... chart1 = undefined $ -> chart1 = new Highcharts.Chart( ...
0
votes
1answer
57 views

image-url not working

images.js.coffee.erb file: <% imgs = {} Dir.chdir("#{Rails.root}/app/assets/images/bg/") do imgs = Dir["**"].inject({}) {|h,f| h.merge! f => image-url(f)} end %> window.image_path = ...
0
votes
1answer
40 views

scrolling animate marginTop problems

I have this code and .cscc .messages{ width:95%; height:200px; overflow:auto; } .message{ width:98%; &:hover{ background: #d6d6f0; cursor: pointer; } } .message-author{ ...
0
votes
3answers
37 views

CoffeScript adding a class with hover

I'm learning how to use CoffeeScript with Ruby on Rails. I have this set up : $ -> $this = $(this); $(".ind").hover( -> $this.addClass("hoverOver") -> ...
0
votes
1answer
45 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 ...
0
votes
1answer
40 views

coffeescript ajax setinterval not working

I'm newbie. I'm trying to make polling for changes(railscast 229) and form submission via coffeesc. jQuery -> MessagePoller = poll: -> setInterval MessagePoller.request("get_new": ...
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: ...
1
vote
1answer
37 views

How do I import JavaScript files in Rails 3?

I've just started working with Ruby on Rails, and I'm having some difficulty calling JavaScript functions from HTML. I'm using Rails 3.2.13, Ruby 1.9.3, and RubyMine 5.0.2. I have a CoffeeScript file ...
0
votes
1answer
52 views

Jquery character count not showing

Jquery character counts aren't showing under my comment forms, even though they work for my other forms. Any help is appreciated. _form.html.erb <%= form_for [@commentable, @comment] do |f| %> ...
0
votes
1answer
116 views

Rails render partial depending on value of collection select

I am working on a classifieds based website, and I want to make the form adjust to the type of classified being entered by javascript. For example I have many types ie. Cars && Mobile Phones ...
0
votes
1answer
118 views

Rails rendering of controller_action.js.erb (AJAX) with the respond_to - can't it be done with coffe/haml?

I am one of those people who use HAML instead of ERB, and Coffeescript "instead" of Javascript. My application uses a lot of AJAX responding, e.g.: def controller_action # Lots of code here... ...
0
votes
2answers
232 views

rails jquery ui datepicker

I want to add the datepicker widget to one of my select fields. I am currently using rails 3.2.13 with ruby 1.9.3.p325. I also included the 'jquery_datepicker' gem, as well as 'jquery-rails' and ...
0
votes
0answers
42 views

In my ruby on rails app I called render text: nil which returns space mark “ ”

In my BillsController I wrote def bill_info path = Path.find_by_bill_id(params[:id]).try(:url) render text: path end and in my view I wrote a get method to call bill_info using coffee script ...
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
0answers
29 views

gmaps4rails display list in table

hi i am using the gmaps4rails gem, and have edited one of the coffee script files so that i can have a list data displayed in a table instead of an unordered list. the problem i am facing now is that ...
0
votes
1answer
106 views

Select2 not removing id from token list

I am using Select2 to assign content to other users (multiple tags). It all works great except I can not find out how to remove assignees once added. Once I have added a user to the list of assignees ...
0
votes
3answers
61 views

How to Hide an Element using Jquery and Coffeescript in Rails?

I would like to hide an element in a page on my Rails site, but I'm not yet that familiar with Jquery or Coffeescript. This code works in the console: ...
0
votes
0answers
48 views

Coffeescript nested iterations on ruby objects

I have a Products page with several products. When you click a product a lightbox pops up with that product and a list of related products. When you hover over the list of related products their ...
0
votes
0answers
68 views

file.js.coffee.erb not updating

I have some Javascript (initially CoffeeScript) code that uses data from the database. I create the data array with .erb, then do the code with .coffee, and finally use the .js. Fairly standard stuff. ...
0
votes
2answers
440 views

Jquery onclick popup tooltip

I need the javascript code for tooltip to appear onclick for 10 seconds Mostly Without using html code, or any plugins $('a.pet_type_link').click(function() { //I need tooltip to appear for ...
0
votes
1answer
85 views

Rails and coffeescript popup only working on first object in array

I have a products page listing several different products. When a products main image is clicked i would like a popup/lightbox to display with another image of that product and additional information. ...
0
votes
1answer
44 views

Need a lightbox for each product on rails site, currently opening all products

I have a main product page, listing several different products of a certain type. I'm trying to make it so that when you click a main product image it pulls up a lightbox of that image with additional ...
0
votes
1answer
58 views

Trying to pull single product into lightbox, but rails pulling multiple/incorrect products

I have a product page listing each product of a certain group and instead of going to the product show page for each individual product when you click the main image, I would like to load the image ...
0
votes
1answer
47 views

backbone + rails jquery doesn't make a call to error callback

I create a method in backbone model for authorization. it selects users correctly, the problem is that upon error a callback for successful authorization is called... i seem to fail to fix this ...
0
votes
1answer
84 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 ...
0
votes
1answer
59 views

Coffeescript loads but doesn't run code

I'm trying to implement autocomplete functionality available in Jquery-ui, as part of this railscast. Ideally, I should end up with something that looks like this github repo. But I'm having trouble ...
0
votes
1answer
69 views

coffeescript image change on thumbnail hover

I have a product page, http://pants.telegraphbranding.com/t/women/long-sleeve, and when you hover over the thumbnails below the main image, the main image should switch to the thumbnail. But it's not ...

1 2 3 4 5 8