I'd like to pass template data to a "textfield" helper method I have defined, like this:
{{textfield label="{{label}}"
id="account_{{attributes.id}}"
name="account[{{attributes.name}}]"
class="some-class"
required="true"}}
(note the {{label}} and {{attributes.id}} references inside the {{textfield}} helper call)
Here is where I set up the template:
data = {
"attributes": {
"id": "name",
"name": "name"
},
"label": "Name"
}
var templateHtml = 'markup here';
var template = Handlebarspile(templateHtml);
var formHtml = template(data);
Here is a jsFiddle.
When I run this, I still see {{placeholders}} in the piled markup.
How can I acplish this?
I'd like to pass template data to a "textfield" helper method I have defined, like this:
{{textfield label="{{label}}"
id="account_{{attributes.id}}"
name="account[{{attributes.name}}]"
class="some-class"
required="true"}}
(note the {{label}} and {{attributes.id}} references inside the {{textfield}} helper call)
Here is where I set up the template:
data = {
"attributes": {
"id": "name",
"name": "name"
},
"label": "Name"
}
var templateHtml = 'markup here';
var template = Handlebars.pile(templateHtml);
var formHtml = template(data);
Here is a jsFiddle.
When I run this, I still see {{placeholders}} in the piled markup.
How can I acplish this?
Share Improve this question edited Aug 12, 2013 at 20:37 Chad Johnson asked Aug 12, 2013 at 20:07 Chad JohnsonChad Johnson 21.9k36 gold badges116 silver badges218 bronze badges2 Answers
Reset to default 8You're using the incorrect syntax to pass named parameters to your handlebars helper. What you want is something like this:
var data = {
"attributes": {
"name": "name"
}
}
var templateHtml = '{{textfield name=attributes.name}}';
var template = Handlebars.pile(templateHtml);
var formHtml = template(data);
And an updated fiddle: http://jsfiddle/3yWn9/1/
Well, it seems that piling the template twice works. Sucks from an efficiency standpoint, but it is what it is. If anyone has an alternative solution, please do post.
var data = { "something": "value", "id": "theId", "theClass": "class-here", "value": "the value" };
var markup = $('#test-template').html();
var template = Handlebars.pile(markup);
var piled = template(data);
var template2 = Handlebars.pile(piled);
var piled2 = template2(data);
$('body').append(piled2);
Here is a new jsFiddle demonstrating the double piling.