I'm building an application using Backbone.js, Underscore.js, HAML, and Coffeescript.

The problem I'm having is getting variables to interpolate inside of html element attributes.

<% _.each(collection.models, function(document) { %>
%tr
  %td
    %input{:type => 'checkbox', :name => "documents[]", :value => "<%= document.attributes.id %>"}
  %td <%= document.attributes.id %>
  %td <%= document.attributes.name %>

  <% } %>
<% }); %>

The object's values are displaying properly inside of the <td>, but not within the input's value attribute.

Is interpolation inside of an element's attributes possible? I was not able to find a solution.

Thanks

link|improve this question
I'm not experienced in this area, but please have a look here if this is what you need. It supports coffeescript in attributes. – dzejkej Nov 30 '11 at 20:53
I'm not sure what's wrong with your code, but I have used interpolation with underscore templates. – Jack Dec 1 '11 at 3:40
The problem is with interpolation inside of html element attributes. – Chris Dec 1 '11 at 13:17
feedback

2 Answers

The solution to this problem is to use HAML's :escape_attrs option.

Haml::Engine.new(template, :escape_attrs => false).render
link|improve this answer
feedback

It looks like you aren't closing the function in the template properly ( try adding <% }); %> to the end of your template).

I'm not really familiar with HAML syntax but here's a simple example on jsfiddle using plain HTML and an underscore template. As you can see you can definitely use interpolation in middle of an elements attributes.

link|improve this answer
Sorry, I didn't include the complete code. I'm updating the question. – Chris Dec 1 '11 at 13:13
Thanks for the link. I see that they are successfully interpolating within an element's attributes. – Chris Dec 1 '11 at 13:24
Then perhaps the problem is with your HAML syntax, since if you look at the jsfiddle i linked to you can see that it correctly interpolates inside the checkbox's value attribute. – Jack Dec 1 '11 at 13:27
I missed this earlier; it appears that HAML is escaping the code inside of the element's attributes. According to the HAML documentation there is a non-haml helper that runs code in a non HAML context. – Chris Dec 1 '11 at 14:01
Then perhaps using a different style delimiters (for example mustache style) for underscore will help here's a link to underscore's documentation describing how to change the delimiters used for interpolation. – Jack Dec 1 '11 at 14:20
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.