HAML is a markup language that’s used to cleanly and simply describe the HTML of any web document without the use of inline code. It can be used as a standalone HTML generation tool or as a template rendering engine in a web framework such as Ruby on Rails or Ramaze.

learn more… | top users | synonyms

0
votes
1answer
13 views

What built-in options are there for generating HTML from a Rails helper?

In my project I am using HAML. I use a construct similar to the following fragment throughout my project: %a.social.twitter{:href => '...'} %span.text Twitter %span.twitter-icon I want to ...
0
votes
0answers
20 views

Rails f.submit: how to add html attribute?

I'm having trouble adding a particular html attribute to a Rails form submit. = form_for :model do |f| ... = f.submit 'Submit', tabindex: '3' The tabindex property isn't showing up in the form. ...
0
votes
1answer
38 views

How to implement a word counter in Rails?

I'm wanting to implement a real-time word counter in a form. So as a user types into the box, a line below the box updates with the correct number of words. Here is the relevant form code (my views ...
0
votes
1answer
29 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"} ...
0
votes
2answers
25 views

Use Angular variable in Rails link_to

I'm using Angularjs in parts of my Rails app, which works great. But I'm wondering how to use an Angular value inside a link_to. Here is my pseudo code: %table %tr{"ng-repeat" => ...
1
vote
1answer
28 views

Rails form texteditor for haml language

Are there any good texteditor's for haml language, for example as jce in joomla etc? Now i use ckeditor for my form: = form_for [:admin, @va] do |f| - if @va.errors.messages.values.present? ...
0
votes
1answer
16 views

How can I render partial in a coffee script filter, with haml?

How can I render a partial with haml and rails? This is my code. :coffee $(document).ready -> $('#addBelteri').click -> $('div#belterik').append( #{ = ...
3
votes
1answer
46 views

multiline code block in markdown adds unwanted tabs

today I'm implementing my page in nanoc (haml templates) and I wanted to write some posts in markdown, but when it goes to multiline code blocks something weird is happening - second line in code ...
0
votes
0answers
31 views

Input from textarea has weird spaces prepended to each line in simple form and haml

Hi guys I'm building a ruby on rails application using simple form and haml for the views. However I've noticed an issue with regards to forms that have textareas. I didn't notice it at first however ...
-1
votes
0answers
8 views

How to use html2haml reading from stdin? [closed]

I saw documentation option -s But I don't understand how to use it, a example would help me so much. Also when I write html2haml terminal seems expecting input, like if -s were not needed.
0
votes
0answers
10 views

Padrino remote js form rendering as text instead of js

I'm learning to use padrino with haml and I get this weird behaviour while working with remote forms. The partial used for creation of an element works like a charm but the one used after the update ...
1
vote
2answers
46 views

Rails 3.0 undefined local variable when rendering a partial

I'm working with a Rails 3.0.20 app and I'm trying to pass a local variable through a partial and it's displaying 'undefined local variable' I've had a look at the other posts on this issue and ...
1
vote
1answer
43 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'}); ...
3
votes
2answers
1k views

Generating unique HTML ids in Rails when using a repeated partial that has form_for

I have a view on my current project which does something like the following(in haml): -@horses.each do |horse| = render :partial => 'main/votingbox', :locals => {:horse => horse} The in ...
3
votes
2answers
6k views

Haml render multiple partials in layout

How can I make the code indent correctly? app/views/layouts/shared.html.haml: = render :partial => "shared/head" = yield = render :partial => "shared/footer" ...
0
votes
0answers
27 views

Rails doesnt log tempalte errors in development mode

My Rails 3.2.9-app does not show any specific error information to me on errors in templates! It doesn't matter if I use haml or erb, I am always getting "We're sorry, but something went wrong". In ...
1
vote
1answer
51 views

Rails HAML div as link -> not getting it worked

I try to make a complete DIV as a link, but it is just working. This is what I have: = link_to (user_orders_path(current_user)) do .current_orders.box.tile.one_third.lightblue .count ...
3
votes
2answers
47 views

Unescaping HAML in an Attribute Hash

I have a problem similar to some I've found on stackoverflow, but not quite the same. I'd like to avoid the solution to the following question: http://stackoverflow.com/a/10407782/996587 Basically, ...
0
votes
2answers
491 views

unnecessary debug info in rails view

In my rails app I'm displaying some posts using nested loops. In development mode, after each loop completes the post objects are dumped in plain text in sequence. So it looks like this: It's ...
2
votes
2answers
193 views

Haml::Engine.render will not place content from block inside proper containing element

Let's first start with a code snippet to explain the issue: = Haml::Engine.new('#bar= yield').render do this should show up inside div#bar, right? Given that code and according to the ...
-2
votes
2answers
40 views

Comment model form not working [closed]

i'm learning Rails by doing social app called bloggers. I have problem with my comment model. Comment model is associated with models: post and user. comments controller: class CommentsController ...
1
vote
4answers
795 views

Bootstrap modal's data-dismiss on close modal not closing audio in mozila and IE

I am using bootstrap modal pop up for showing audio/videos attached in the project. On clicking the cancel button the modal should close and the audio should stop playing. This is working correctly in ...
3
votes
2answers
2k views

Include inline JS in HAML

I'm not up on my HAML. Wondering how I can write something like this to include in a template while I'm hacking on it, but in HAML? <script type='text/javascript'> $(document).ready( function() ...
1
vote
2answers
48 views

Rails: submit form with nested attributes throws 'couldn't find entity with id=xxx'

I got the following model classes: class Movie < ActiveRecord::Base has_and_belongs_to_many :actors accepts_nested_attributes_for :actors, :allow_destroy => true ... end and class ...
0
votes
1answer
30 views

Multiple input field for multiple forms for multiple users

I am trying to create a small accounting system. Here I have some products. Each month I want to write down how many of each product each user bought. Lets say I have 3 users and 4 products. I want a ...
-1
votes
0answers
24 views

Sass only converting to .sass, not .scss using prompt sass-convert [closed]

So I'm on Windows and working from standard cmd prompt, though the issue seems like it would be applicable to any POSIX prompt as well. The language for either with sass is identical. So the ...
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 ...
2
votes
2answers
160 views

AngularJS and Rails template engines

As a Rails guy, I love me some Haml or Slim. However, I haven't had much luck with either when it comes to using AngularJS. Is there a templating engine that is AngularJS friendly and is less verbose ...
0
votes
1answer
47 views

pass variables to controll and save to database

I'm able to pass the variables to the controller but I think my method is incorrect. I have Referrals where a reply can be applied to a referral, in the routes I have nested the replies inside ...
0
votes
1answer
47 views

Yeoman watching HAML files, but not compiling

When using grunt-contrib-haml, I can get Grunt to watch for HAML changes, but nothing is generated to HTML. What do I need to add to Gruntfile.js file to get this to occur?
5
votes
4answers
961 views

HAML nesting tags

I'm trying to nest this %h1 Admin Menu %small logged in as: #{session[:username]} To get something like this <h1>Admin Menu <small>logged in as: ...
1
vote
2answers
47 views

HAML putting a partial inside previous div

I'm using a layout for the landing area of my site, and on that I'm using the devise_controller? method to add #login & .span.offset4 that tell the Devise views to move to the middle and set a ...
0
votes
3answers
25 views

How do I set the ID in a link_to tag in haml?

I've tried = link_to 'foo', :action => 'bar', :id => 'foobar' But ID only seems to modify the href, resulting in <a href="controller/foobar/bar">foo</a> How do I set the ID ...
0
votes
1answer
36 views

ng-show is not working within HAML template on Internet Explorer 7

I have the following minimum failure case: %span.add-on - if planned_date.blank? %i.icon-calendar - else if successful %i.icon-calendar.foo ...
0
votes
1answer
62 views

create a button that pulls a table id and user id

I have a page that has a list of referrals on it. I have a button on each of the referrals that is set to reply to the referral. I don't need any pop up or form to show except for a flash message to ...
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 ...
-1
votes
0answers
17 views

how can I get the result of a post submit using ajax with haml for ruby?

Ive done a little form that submits some information, and depends of it returns true or false, the problem is that I dont know how to how to read that information that is given back... there is any ...
0
votes
1answer
40 views

radio button counter in database

Ruby on Rails beginner here. extremely simple question.I have a form with 4 radio buttons. a,b,c,d. everytime a user selects one of the four options and hits submit,i want the value incremented by 1 ...
0
votes
1answer
28 views

HAML Form For Rails

I'm currently trying to convert an ERB layout to HAML. This is the error I keep receiving: index.html.haml:18: syntax error, unexpected ')' ));}\n #{_hamlout.format_... Here is the HAML ...
0
votes
0answers
30 views

Haml nesting with rendered partial in Rails

Consider a partial.haml like this: - haml_tag :body, {:id => @instance_var} What I'm trying to do is to nest haml content under a rendered partial. Something like: = render 'partial_file' do ...
0
votes
4answers
37 views

how can I enable my form to use ajax in ruby on rails using haml?

I am trying to create a form to send data via ajax and order to update a user (I used scaffolds, so the methods for update already exist). I created my form and I did something like this %form{ ...
0
votes
1answer
42 views

Render haml with locals and partials within partials to html file

I need to create some html files and want to use my partials already done to the show view. I used to do this with markaby, but now i think that with haml the thing will be easier. I'm trying to do: ...
6
votes
4answers
2k views

Rendering HAML partials from within HAMLoutside of Rails

I'm using HAML to generate some static html pages for a site, and I was wanting to split out common components into partials that I can include in multiple pages, just like in Rails. However I don't ...
3
votes
3answers
531 views

Using rails methods with Haml::Engine

I want to have a rake task that reads a HAML file and creates a static html file out of it. The reason for this is that I want to dynamically localize my error pages in a manner described here ...
0
votes
1answer
35 views

Issue mixing jquery, rails, and haml

I'm converting an html.erb into html.haml. I have some jquery in an erb which is.. :javascript $(".level").live("click", function() { //..some code <% if @milestone %> milestone ...
0
votes
2answers
29 views

Inline conditional statement using haml css

How do you write inline if else in haml/css? Here is my working code: - if unit > 10 = value - else .unit = value I tried to make it inline like the below, but that doesnt work: ...
0
votes
2answers
49 views

how can I specify controller and method in a link using haml with rails?

I am new in ralis, and I am trying to create a link in what calls an specific method of a specific controller, in this case car and method add_to_cart sending a parameters, unfortunately I dont know ...
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
41 views

Why does Ruby on Rails Create Unformatted HTML Code?

I'm working on a ruby on rails app and i noticed that the HTML output isn't formatted, it's just flat. I'm using HAML and running Rails 4.0.0rc1, this also happened on 3.2.x and I am using Heroku and ...
-2
votes
1answer
50 views

Sinatra/Ruby new to programming - increasing an integer if a radio button is selected

I am very new to this and I am trying to do something pretty simple but I am not sure where to begin. I simply need to increase the "vote" count of a newly posted link from 0 to 10 if a radio button ...

1 2 3 4 5 33