Tagged Questions

50
votes
14answers
5k views

Using Rails 3.1, where do you put your “page specific” javascript code?

To my understanding, all of your javascript gets merged into 1 file. Rails does this by default when it adds //= require_tree . to the bottom of your application.js manifest file. This sounds like a ...
34
votes
4answers
15k views

Problem deploying Rails 3.1 project to Heroku: Could not find a JavaScript runtime

I am having trouble deploying a rails 3.1 beta project to heroku. The problem happened at the database migration step. When I ran: heroku rake db:migrate I got error message: > rake aborted! > ...
31
votes
6answers
633 views

My JavaScript patterns/practices stink. Where should I seek help?

I've been working almost exclusively on back-end tasks for the past few years, and I've just noticed that most JavaScript (and CoffeeScript) projects have got a helluva lot prettier in my absence. I ...
29
votes
3answers
19k views

Javascript Include Tag Best Practice in a Rails Application

Say I need to call a javascript file in the <head> of an ERb template. My instinct is to do the usual: <head> <%= javascript_include_tag :defaults %> <!-- For example --> ...
20
votes
3answers
1k views

rails best practices where to place unobtrusive javascript

my rails applications (all 2.3.5) use a total mix of inline javascript, rjs, prototype and jquery. Let's call it learning or growing pains. Lately i have been more and more infatuated with unobtrusive ...
18
votes
7answers
34k views

jQuery: how to change title of document during .ready()?

I am using some nested layouts in Ruby on Rails, and in one of the layouts i have a need to read in a string from a div and set that as the title of the document. What is correct way (if any) to set ...
17
votes
3answers
3k views

Sproutcore or Cappuccino for Ruby-on-rails?

Rails is a very great backend framework keeping everything clean and structured. I guess that you all have thought about doing the same for the frontend. Sproutcore Cappuccino Do you use one of ...
16
votes
4answers
4k views

How to add and remove nested model fields dynamically using Haml and Formtastic

We've all seen the brilliant complex forms railscast where Ryan Bates explains how to dynamically add or remove nested objects within the parent object form using Javascript. Has anyone got any ideas ...
14
votes
1answer
5k views

When to use node.js vs sinatra vs rails?

What are the best uses for these 3 languages/frameworks? Is it useful to mix all of them (or 2)?
13
votes
1answer
248 views

Does the asset pipeline rails 3.1 waste cycles?

In rails 3.1, does .coffee and //= require files get processed only once or with each asset request? For example,I have a file //= require source/main.js.coffee //= require source/second.js.coffee ...
13
votes
2answers
2k views

Best way to add page specific javascript in a Rails 3 app?

Rails 3 has some unobtrusive javascript which is pretty cool. But I was wondering what the best way is to include additional JS for a particular page. For example, where I might have previously ...
13
votes
7answers
1k views

Jquery + Rails problematic, is that true?

I saw comments in a previous question saying that it is best to use Prototype with Rails. However, my own experience is that Jquery is a superior Javascript library. Being new to Rails, I have not yet ...
13
votes
9answers
6k views

Selenium or Watir for Javascript Testing in Rails

We're using RSpec and Cucumber in our Rails apps with good results. Webrat is great for non-AJAX interactions, but we're getting ready to get back into writing tests for our Javascript. Webrat has ...
12
votes
3answers
6k views

Why escape_javascript before rendering a partial?

I'm looking at this Railscast episode and wondering why the call to escape_javascript is needed here: $("#reviews").append("<%= escape_javascript(render(:partial => @review)) %>"); What is ...
12
votes
9answers
4k views

How to improve the way I use Textmate for Ruby on Rails, HTML, CSS and Javascript?

I use the latest version of textmate for all my Rails development needs and I feel that I'm under-using the possibilities or this software. I only installed the Ruby on Rails bundle and use little to ...
11
votes
4answers
249 views

Using a Rails helper method within a javascript asset

Is there any way to use a Rails helper method, more specifically, a path helper method within a javascript asset file. This file foo.js.coffee.erb $('#bar').val("<%= create_post_path %>") I ...
11
votes
6answers
14k views

Facebook how to check if user has liked page and show content?

I am trying to create a Facebook iFrame app. The app should first show an image and if the user likes the page, he will get access to some content. I use RoR, therefore I can't use the Facebook PhP ...
11
votes
3answers
414 views

Detect browser character support in javascript?

I'm working on a music related website, and frequently use the HTML special characters for sharps (♯) and flats(♭) to keep things pretty, e.g.: &#9839; &#9837; However, I've noticed that in ...
11
votes
8answers
11k views

What are some good pop-up dialog boxes for Ruby on Rails

I want to use modal pop-up windows in our web app in Ruby on Rails. Note that I don't want to create a new browser window, but a sub-window inside the existing webpage. We've tried things like ...
10
votes
3answers
499 views

Template language that works on both server and client

I am looking for a template solution that can work on both server side (like ERB) and client side (like EJS) so I don't have to write the views twice for use in, say, both Rails and Backbone. The ...
10
votes
3answers
6k views

jRails vs. Prototype

I am not trying to make this a preference question, I am really wondering what people's experiences are with using jQuery and Rails or jRails for development. Most rails users including myself up to ...
9
votes
3answers
144 views

Representing time periods in the UI and database

I've recently adopted a project with an Employee model that needs to contain the person's available hours as an attribute. The existing form uses 168 checkboxes to represent each hour in the week, ...
9
votes
2answers
2k views

“Can't find variable” error with Rails 3.1 and Coffeescript

I have views in my application that reference my application.js file which contains functions I use throughout my application. I just installed the Rails 3.1 release candidate after having used the ...
9
votes
6answers
2k views

Find DOM element by ID when ID contains square brackets?

I have a DOM element with an ID similar to: something[500] which was built by my Ruby on Rails application. I need to be able to get this element via jQuery so that I can traverse my way up the ...
8
votes
2answers
140 views

Models in Backbone.js

I have a question about handling my models. I get all confused. When I load the page I get a JSON string from rails containing "events" these events have in turn one user, multiple participants, ...
8
votes
2answers
207 views

Javascript namespaces and conditional inclusion

I've some js files organized this way (see source): gmaps4rails.base.js : contains all the logic gmaps4rails.googlemaps.js : contains functions gmaps4rails.bing.js : contains functions with the ...
8
votes
2answers
995 views

File upload with Backbone

I'm using Backbone.js in a Rails app and I need to do file uploads as part of one of the Backbone models. I don't believe Backbone allows for multi-part file upload out of the box. Has anyone managed ...
8
votes
2answers
200 views

Can I use a AGPL3-licensed JS lib on a MIT-licensed web app, using git submodules?

The locomotivecms dev guys (ruby on rails web app, MIT license) would like to use the Aloha Editor (js-based editor, AGPL3 license). Both projects have all their code available on github. They'd like ...
8
votes
5answers
460 views

Sanitizing CSS in Rails

I want to allow the users of a web app that I'm building to write their own CSS in order to customize their profile page. However I am aware of this opening up for many security risks, i e ...
8
votes
2answers
2k views

How to show server errors in Rails 2.3.5 with JSON and jQuery

I've got in-place editing on a page in my app (using Rails 2.3.5 and jQuery). I want to know how to display an error on the page when the update fails. I'm using ajax (an XMLHttpRequest) to save an ...
8
votes
2answers
803 views

How do I build a gracefully-degrading HTML5 Range?

I'd like to use the <input type='range' /> from HTML5 for browsers that support it and degrade to a <select /> if not. I'm using Ruby-on-Rails, so failing all else, I could do something ...
8
votes
4answers
987 views

Is an autocomplete text box for entering addresses a good idea?

Entering my address via a traditional form drives me crazy: Why do I have to enter my city, state, and zip code when my city and state can be inferred from my zip code? Choosing your state from a ...
8
votes
2answers
10k views

Link_to method and onClick event in Rails

I have a small problem. How to create a link of this type: a href="#" onClick="document.getElementById('search').value=this.value" using method 'link_to' in Rails? P.S. I write ...
8
votes
4answers
5k views

JavaScript file per view in Rails

As per 'unobtrusive JavaScript' recommendations I want to separate my JavaScript logic into separate files. However I don't know how to organize them. Should I: Just throw all application ...
8
votes
4answers
4k views

Rails controller does not accept JSON?

I am trying to create an ActiveRecord object via a JSON request. However the controller fails to set the variables passed in the parameters in the newly created object. As an example, a person object ...
7
votes
3answers
3k views

Rails 3.1 error - Could not find a JavaScript runtime?

I created a new project using rails 3.1.0.rc4 on my local machine but when i try to start the server I get: Could not find a JavaScript runtime. See here for a list of available runtimes. ...
7
votes
1answer
164 views

Jasmine: define separate source file sets for Rails?

Separate parts of my site have separate sets of Javascript files, which -thrown all together- interfere with each other. In order to test everything with Jasmine, it seems I need some way to define ...
7
votes
4answers
248 views

The anatomy of uploading

I am wondering what is the general consensus for uploading moderately large files. I have a web app, and every time a user uploads a file (typically larger than 5mb), the web server tends to hang ...
7
votes
3answers
236 views

how to cross direct user with google analytics

After a user fills in my "new" user form on "example-one.com", the "create" controller creates the record in the db. Then it does a redirect_to to an external site "payment-checkout.com". I have setup ...
7
votes
2answers
2k views

How to POST files from HTML5 Drag-Drop to a Rails 3 App & Paperclip?

I'm trying to get some html5 drag-and-drop functionality in a Rails 3 app with Paperclip. So, basically: One or more files are dragged and dropped onto a DIV Files are POST'ed to a Rails action ...
7
votes
7answers
1k views

Is RJS evil and why?

I heard a bunch of rails developer saying that RJS is evil. I've never used it since I always managed to do what I wanted using classic javascript or jquery so I didn't pay attention. Now I'm getting ...
7
votes
2answers
4k views

Three level nested forms in rails using accepts_nested_attributes_for

I've been trying to implement a dynamic multi-model form with accepts_nested_attributes_for in my rails application. I've been following Eloy Duran's complex-forms example that shows a 2 level ...
7
votes
4answers
926 views

How much JavaScript do you let Rails generate?

Ruby on Rails has a lot of ways to generate JavaScript. Particularly when it comes to Ajax. Unfortunately, there are a few problems that I often see with the JavaScript that it generates. Rails ...
7
votes
7answers
3k views

What's your favorite Prototype framework compatible, javascript date picker?

Please one library per answer so that people can vote for the individually.
6
votes
2answers
81 views

What is used for Googles bubble tips and similar “learning curve” / “getting started” bubble tips?

Today I entered my Google Calendar and there was a little box (bubble tip) explaining that they have implemented a new color palette for calendar events. The box had a small close button at the top ...
6
votes
2answers
218 views

How do I achieve the “GitHub browse repo effect” (update URL without refreshing the page)

When I browse a repo in GitHub (example: https://github.com/sizzlelab/kassi) and click a folder, it loads the folder with a cool javascript animation, moving stuff to the left, instead of reloading ...
6
votes
2answers
475 views

How do you limit CoffeeScript (or JavaScript) execution to a particular controller and action in Rails 3.1?

The new Rails 3.1 asset pipeline is really nice, but since all CoffeeScript (or JavaScript) files get melded down into a single file that is included in every page, it raises this question: How do I ...
6
votes
2answers
2k views

Rails 3 and Rich text editor

I am building a Rails 3 app with blogging, commenting, and other functionality that require the users to input text. My question is whether it is a better idea to use a Javascript rich text editor ...
6
votes
2answers
602 views

How can I effectively use Jasmine to test javascript assets packaged via Jammit?

I have a rails app that is combining javascript assets using Jammit, and I'd like to use Jasmine for BDD-style testing of my javascript. I'm wondering if anyone has any advice on accessing the ...
6
votes
3answers
6k views

Uncaught TypeError: undefined is not a function rails3/backbone/js

I just started delving into javascript to make project more responsive and I am working through a backbone.js example. I've replicated ...

1 2 3 4 5 36