I'm trying to implement a simple conditional statement in Handlebars that changes based on an attribute in my controller.
I've managed to come up with;
Handlebars.registerHelper("businessVerificationState", function(state, block) {
var value = Ember.getPath(this, "state");
if (value == state) {
return block(this);
}
});
App.businessController.business refers to a model object I've created and "state" is an attribute. Below is the template.
<script type="text/x-handlebars">
{{#with App.businessController.business}}
{{#exampleState "test1"}}
<p>Test 1</p>
{{/exampleState}}
{{#exampleState "test2"}}
<p>Test 2</p>
{{/exampleState}}
</script>
This all works swell. Except when my model attributes changes. From the console in webkit .. if I type ..
business.set("state", "test2"); for example - nothing changes.
If I use other standard handlebar statements like IF or UNLESS - the content changes based on when I update model attributes.
Obviously I'm doing something incredibly wrong and would appreciate any help.