0
votes
0answers
16 views

ng-switch not updating automatically

I'm running into an unusual behaviour with ng-switch that I'm not able to figure out. At the top of my page, I have #content{"ng-switch" => "root.showAlert"} ...
1
vote
1answer
42 views

Executing JavaScript in a Haml form using Rails

I am trying to use jquery.datetimeentry and I am a newbie having trouble with the javascript. if I put: $(function () { $.datetimeEntry.setDefaults({spinnerImage: 'spinnerDefault.png'}); ...
0
votes
0answers
18 views

Haml javascript editor for text area in rails app [closed]

Are there any good solutions for rails apps, like JCE for joomla etc... ? I need to add editing tools to my text area, but main trouble is that all of them work only with simple and pure html but ...
0
votes
3answers
47 views

How to disable Checkbox unless one checkbox is clicked

i have two check boxes, when one check box is clicked then the other one must be enable otherwise it should be disabled (both check box and text) HAML code: %label.checkbox = check_box_tag ...
0
votes
1answer
73 views

jQuery stepper doesn't trigger the change function

I want to toggle the visibility of the submit button on change of input fields. Since the HTML5 input type="number" is not supported in firefox, I use the stepper jQuery plugin. The submit button ...
0
votes
1answer
65 views

Rails 3: error while passing params to javascript function

I am trying to pass value to the JavaScript function but it gives me the below error on Firebug when I click the anchor tag (plus icon). What I am trying to do is, on click of a 'plus' sign, I add ...
0
votes
2answers
483 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
68 views

Access logic on JSON-Object from Backbone in HAML

I want to loop over a backbone-generated JSON-Object in HAML My View renders as follows: render: function() { this.$el.html(this.template( this.model.toJSON() )) return this; } The ...
1
vote
1answer
87 views

jquery remove particular accordion class

This code runs fine in fiddle: You can expand/collapse all items and also expand/collapse individual items. Now I have added some logic in ruby (i cannot add that in jsfiddle) .accordion-body{id: ...
0
votes
1answer
79 views

jquery collapse all does not work when combined with HAML format

My Exapand All button works fine (collapses and expands) in the following jsfiddle. http://jsfiddle.net/HqXMN/6/ But the Expand all/Collapse all feature does not work when used in a HAML format.. I ...
1
vote
2answers
134 views

Rails & Haml - Passing data to javascript

I am trying to pass data from my haml views to javascript. In my welcome controller I have index method. In my index.html.haml view file I have the below: :javascript window.putalert = "#{ "Data" ...
0
votes
1answer
57 views

haml and javascript

i have a show.html.haml file that calls a display.js in my controller I have a variable @category how would I use @category in my display.js file that's being used by view? Thank you!
0
votes
0answers
59 views

Necessary to unload images after view scrolls out of view

I have multiple views loaded on a main scrollable page. addOneMuse: (muse) -> view = new Onethingaday.Views.Muses.IndexView model: muse source_section: "main_feed" @subViews['muse-' + ...
0
votes
1answer
76 views

index.js.haml is not loading

I am using inherited_resources and in my controller I specified respond_to :js, :only => [:index]. But when I trigger an oncange event for dropdown a ajax url that hits the controller index method ...
3
votes
1answer
943 views

How to pre-select checkbox in angularJs with ng-checked

I seem to cannot get this to work. So I have a bunch of genres of movies which I want them to be checked if those are the genres in user database. This is my code %section(ng-controller="UserCtrl" ...
5
votes
1answer
204 views

How add own javascript file to nanoc?

again I have a problem with files in nanoc. This time I wanted to attach custom file slide.js to my blog but I cannot (don't know why - probably something is wrong with my routes). Here's my routes: ...
2
votes
2answers
917 views

angularjs with client side haml

I've just started using AngularJS with my Rails app and as I'm used to using haml templates within Rails I would like to do the same with AngularJS on the client side. Problem is I don't know where to ...
0
votes
1answer
203 views

populate jquery autocomplete with data from a database

I'm using jQuery Autocomplete with categories, I've used the demo code which worked fine, now i'm trying to populate the drop down with data from my database. I've used this code within my view: ...
0
votes
1answer
46 views

Hide haml if anything but a desktop

I have a js class that is able to define what kind of device I'm on. The class will return a bool if I ask for desktop or phone. The problem is I want my html/haml to be dynamic based on what the ...
0
votes
2answers
315 views

Is there a way to add current location marker to gmaps4rails?

I'm trying to figure out how to add a current location marker to gmaps4rails map along with some map_points from the backend using @map_points = @user.places.to_gmaps4rails. I saw the following post: ...
0
votes
3answers
584 views

jQuery Datepicker formats date wrong way around

currently all of the dates in my database are formatted like this: 2012-11-06 - so yyyy-mm-dd but with my new date picker, they are saved like this 2012-06-11 - so yyyy-dd-mm I need to some how ...
0
votes
0answers
234 views

<fb:registration> redirects to http://www.facebook.com/plugins/registration.php

I am using the xfbml. I've implemented it on https://weddingful.com/signup It works great in Chrome, FF, and Safari. If user is signed into Facebook, but not my website, the registration is ...
0
votes
3answers
237 views

How to get rails variable into onclick function call

Hi I have the following: = link_to @place.name, '#', onclick: 'get_maps(#{@location_string});' I'm currently trying to link to a javascript call with a rails variable argument but for some reason ...
4
votes
1answer
369 views

Using Slim or HAML & Sass / SCSS with Node.js?

I have a rather robust project that has all of its templates implemented in Slim and a little HAML. I have been considering starting to push the project over to a Node.js based structure (probably ...
0
votes
0answers
121 views

How to position an autocomplete table div

Hi I am implementing an autocomplete functionality in my app whereby a table will appear with the results after the user types in some text in a input textbox The CSS used to 'position' the ...
0
votes
2answers
133 views

How to format text in a textarea

I am adding some text by default to a textarea %textarea.email_copy Hi <awesome friend>, I am using this site called XXXX, and you should check it out. It is for smart and thoughtful ...
1
vote
3answers
837 views

call javascript function from haml link_to

I would like to invoke a javascript function (without JQuery) when the onclick even fires from a link_to tag in haml. How can I do this?
0
votes
1answer
106 views

Toggle a set of inputs on a form in Rails

I have a form in a Rails application with an invite code and a block of credit card information. I'd like to be able to toggle between the two on the same page. Either the user provides an invite ...
0
votes
1answer
116 views

Loop using Ruby within :javascript Haml definition

I have a JSON to declare in :javascript and I am not familiar with Ruby. The JSON is below: :javascript var collections = { feed: [{'label': 'All', 'url': 'All', 'isSelected': false}] }; ...
0
votes
0answers
73 views

escape_html with haml.bat?

I am using Haml standalone without Ruby and I use haml.bat to build the .html. Right now I have problem with Underscore.js templates using <%= %> for variable interpolation %img{:src => ...
1
vote
0answers
161 views

Using JQuery to combine two pages into a single page with divs that toggle on click

trying to rework 2 different pages with images that fade in into a single page via divs that fade in and out when you click on an image (button). I've been reading through other posts, the JQuery API, ...
1
vote
0answers
51 views

Select tag rails to follow key punched for numerics

I have a select tag for time. = select_tag "depart-minute", options_for_select('00'..'59', dep_minute), :include_blank => true' When this select field is on focus and i press 5 two time, it ...
0
votes
0answers
101 views

Haml elements disappear after editing text fields on web page

I have the following haml: :css .section .field .extra_margin { margin: 4px 0 10px 0; } .field.large = f.label :name, nil, 'data-help-id' => 'page_name' = f.text_field :name, ...
0
votes
0answers
111 views

Autocomplete text field is not expanding

I am expanding some text fields according to data length but the one with auto complete is not being expanded. for this expanding is working fine. = o.text_field :name, :class => ...
0
votes
2answers
256 views

Call a ruby array in external javascript from Haml

I'm new to RoR and web app development, Im using Rails 3.2.3 and I want to use a ruby array in Highcharts and I'm using Haml in my view files. I have an array defined in the controller like so: ... ...
1
vote
2answers
96 views

Issue with Rails, haml + javascript on blur for a field objects

I'm trying to do a fairly straightforward select on blur for a particular field box. I'm not certain why (for my example) I can't simply get the box to change background color on a blur action. ...
0
votes
2answers
153 views

Complex ERB replacement with HAML fails in JS

I have replaced my ERB files with HAML which works great. However, I have some complex mixed javascript and erb code, which fails when converted to haml. I know about the ":plain" option to bypass ...
0
votes
1answer
945 views

Show/hide div onchange of drop down menu

I have the code for a dropdown menu in a form using haml = f.select :contact_type, options_for_select(['String','Email','Phone','Textarea','Boolean', 'Multi Select'], selected: ...
3
votes
2answers
222 views

Dynamically-generated Javascript within HAML

Why doesn't this work? :javascript -[1,2,3].each do |number| $("#form_#{number}").my_method(); Rails gives me an error, saying that the variable number isn't defined.
3
votes
3answers
870 views

Interpolate ruby if statement in haml javascript block

This is the code I currently have: :javascript // do something - if current_user.role? :client :javascript //do something else It's obviously not very clean since I'm repeating the ...
1
vote
2answers
115 views

Javascript - Changing text on event object's sibling

I am trying to get my js to work for my website so that when a user selects a file to upload the text on the button that is sibling of the event caller will change. Unfortunately I can't get it to ...
0
votes
1answer
158 views

Trying to capture signature on ruby on rails application using SignaturePad

I'm trying to set up a signature capture in my ruby on rails application. I'm using signaturepad here, but I'm getting javascript errors in my firebug. Here is my application.js file //= require ...
0
votes
1answer
324 views

JavaScript template for a HAML based view

I have a Ruby on Rails application that is using HAML based template views. I need to drop a simple: alert('Hello World'); JavaScript excerpt template that I can build off that loads for the page. ...
0
votes
1answer
242 views

Rails App using Jquery: Only allowed to select one checkbox (haml)

I have a credit card option (which when the box is selected you can choose from either American Express, Mastercard, Discover, or Visa). If you unclick it, it's hidden. And same goes for the check ...
0
votes
2answers
218 views

include HTTP method in Javascript redirect?

In my layout, I have a devise sign in / sign out link, like so: =if user_signed_in? then link_to "_", destroy_user_session_path, :method => :delete else link_to "_", new_user_session_path, :method ...
1
vote
1answer
358 views

how to use output of helper method as value in haml hash?

I have a button and I want to set its onClick attribute dynamically each page load. I want to use application_helper to give it a custom javascript every time. It seems difficult to do because the ...
2
votes
1answer
834 views

'This' in phonegap

What is 'this' in phonegap? I am working on an app where I have local javascript packed with the app and remote javascript pulled from a server. I am using coffeescript to generate all the ...
0
votes
1answer
126 views

Dynamically change between a select_tag and a text_field_tag in Rails

I have implemented a simple search on my website, the idea is "choose what field you want to search on, then input your search query." However, at least one of the search options should be limited to ...
0
votes
1answer
252 views

HAML - how to call a form with a selector?

I have this form in HAML: = form_for([:mobile,@disclosure], :html => {:id => "add_validation_to_ajax_form", :remote => true}) do |f| but the add_validation_to_ajax_form function has a a ...
0
votes
1answer
224 views

Using Rails 3.2, Should inclusion of conditional JavaScript in the views be avoided?

As everyone knows the Rails framework advices for strict separation of JavaScript and Html via what's called UJS, however sometimes, I find myself in the need to include impromptu snippets of ...

1 2 3