0
votes
0answers
18 views

My coffeescript for jquery-ui-rails is not working

I am using jquery-ui-rails gem package for datepicker in my rails. but it isn't working. Here is my Gemfile group :assets do gem 'sass-rails', '~> 3.2.3' gem 'coffee-rails', '~> ...
0
votes
0answers
62 views

Create dynamic forms for nested models with Rails 3

I use deeply nested models, with polymorphic association in a form. I have a Child model under Person and the Child has many Meals. But when I add with javascript the second Child fields, the Meals ...
1
vote
1answer
38 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 -> ...
0
votes
1answer
32 views

Alternative to Eco templates with multiline [closed]

I used Eco templates for some time, but I don't like at all. I have searched some alternatives in Google, but I don't get useful information. I am looking for templates with this features: ...
-2
votes
1answer
42 views

rails and coffee script if statement is not working

I'm working on a Rails app with language support for three different nationalities. The tables filled with data are implemented with JQuery. I want to translate them into all three languages. At the ...
0
votes
1answer
47 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
0answers
36 views

How to pass a value from html.erb to coffeescript

I want to be able to redirect the user to the corresponding product details page on clicking the image of the product. Here is my code : index.html.erb <ul class="productsgrid"> <% ...
0
votes
1answer
31 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
2answers
78 views

Does yuidoc work with coffeescript?

Has anyone ever setup yuidoc to work with coffeescript? Here's my yuidoc.json file: { "name": "App", "description": "App", "version": "1", "url": "http://example.com", "options": { ...
0
votes
0answers
113 views

DataTables with Rails- Show and Hide Columns Dynamically

I installed the DataTables gem for my Rails app and got started by following this Railscast. Everything worked fine. My goal was to allow users of my app to hide and show columns, so I read this ...
1
vote
0answers
83 views

Unobtrusive Google Maps API Javascript in Rails View

I have this javascript code inside my app/views/people/show.html.erb. It uses google maps api v3. But the thing is that this is very obtrusive. What I wanted is that I want the js codes to be inside ...
0
votes
1answer
144 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
91 views

from Javascript to CoffeeScript [closed]

How to write this javascript code in coffeeScript? $('#id_tab a').click(function (e) { $('ul.nav-tabs li.active').removeClass('active') $(this).parent('li').addClass('active') }) It works ...
4
votes
2answers
173 views

Coffee script with erb extension gives missing template error

I am using rails 3.2.11 and coffee rails 3.2.2. Here I am trying to render a coffee script in a file /app/views/my_files/create.js.coffee.erb Here is what my controller code looks like class ...
1
vote
1answer
95 views

getJson Unknown key but it is being sent

OK, this is another exercise in frustration. I cannot for the life of me figure out what's wrong. Controller: class MapController < ApplicationController layout "map" def index if ...
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 ...
0
votes
2answers
80 views

@function in CoffeeScript does not work as advertised

Rails 3.2.8. In converting some of my JS functions over to CoffeeScript, I have come across several questions that say declaring a function like so: @foo = (bar) -> puts foo in the global ...
2
votes
1answer
220 views

Coffeescript not handling ajax:success

As I mentioned in a question last week, I'm working with @coreyward's excellent walk-through for modal edit windows in Rails 3. However, I'm a relative novice with Coffeescript, and I'm having trouble ...
0
votes
1answer
76 views

CoffeeScript function can not be found

I have a Rails 3.2.8 application that I have recently upgraded from 3.1, and I have converted all of the original application.js code to CoffeeScript. Most of it is working fine. However, I have a ...
1
vote
1answer
1k views

jQuery “Object function (e,t){return new v.fn.init(e,t,n)} has no method 'on'”

I'm following @coreyward's example for putting object edit forms in modal dialog windows in Rails, which is outlined in this answer and updated for rails 3.1 in this gist. I'm using Rails 3.2.8 and ...
1
vote
2answers
577 views

Bootstrap-Datepicker Not Displaying with Bootstrap-SASS

I'm trying to use the Bootstrap Datepicker on a form I'm creating. I've read through the documentation here: https://github.com/Nerian/bootstrap-datepicker-rails/issues/11 and followed it (or so I ...
3
votes
1answer
2k views

How to iterate through JSON hash with coffeescript

I'm new to Coffeescript and I'm having issues resolving an issue. I have a JSON object that is currently stored in a variable. How do I iterate through the keys in the JSON object to display the key ...
0
votes
2answers
54 views

How can I POST a custom associative without Ajax, or do an HTML redirect from an Ajax POST?

I have two datatables that I am merging together using Javascript and jQuery. I want to POST this data to a Rails controller action, but the results of the action will need to be displayed in another ...
0
votes
1answer
118 views

CoffeeScript event not firing

I don't know what to look at on this. I have a Rails 3.2.8 application, and I have a page where all of my Coffeescripts are firing except one. My controller is called "apps", and my Coffeescript file ...
1
vote
1answer
682 views

$(this) throwing TypeError: $ is not a function in Coffeescript, Rails 3.2

This is driving me absolutely crazy. So each time I use $(this) inside a jQuery Event, I get TypeError: $ is not a function. Here is a sample of the code I am using: $ -> ...
2
votes
1answer
173 views

retrieve data with json using CoffeScript in rails

I'm a newlye developer rails application and Coffescript I have this CoffeScript code to get some data using ajax with the get method and json: jQuery -> $("#detalleliquidacion_nit").change ...
0
votes
1answer
142 views

Why isn't my autocomplete event firing?

I am writing an app in Rails 3.2.6 and I have the following in a view-specific CoffeeScript file called "apps.js.coffee": $("#app_make").live "autocomplete", (event,ui) -> source: ...
0
votes
1answer
97 views

Is it possible to pass a JavaScript Object as an argument to the Locals Hash in a render: partial call?

I think this is easily explained by looking at code, so I'm posting a couple of snippets that show how I usually do Ajax things in Rails 3.2, The following will work: create.js.coffee $("<%= raw ...
0
votes
1answer
225 views

Possible to render a partial from a link_to?

I'm trying to create a fancy login form for my webapp in Ruby On Rails using Twitter-Bootstraps modal feature. Here' s my form currently. _login_form.html.erb <div class="modal hide" ...
0
votes
1answer
399 views

Where do I place this coffee script in rails 3.2?

My controller is in app/controllers/admin/customer_service/tickets_controller.rb I've written a tickets.js.coffee script for use in the show view... Just wondering where do I put it, to be ...
0
votes
1answer
233 views

Access to controller variable from CoffeeScript

I have @list value in my controller and i have view where i m adding products.Form looks like product_name and Add Button.I need to add all thees values to @list thought ajax request using coffe ...
0
votes
1answer
594 views

How to prevent Rails 3.2.2 to create a .js file everytime I change a .coffee file in the assets/javascripts/ directory

Every time I change a .coffee file in the development mode, Rails creates a corresponding .js file in the same /javascripts directory. With the result that Rails ends up processing both the files and ...