I am trying to get the value of the data item to use in a {{if}} tag, but cannot get it to work. So, the question is how do we get that value? You can see full code here http://jsfiddle.net/epitka/BhYvh/

<script id="contentHeaderTemplate" type="text/x-jquery-tmpl">
   {{if($data.Id===1)}} Create New Order{{else}}Edit Order {{/if}}      
    <br />
</script>
link|improve this question

58% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Drop the parentheses.

{{if $data.Id === 1 }}

http://jsfiddle.net/mattball/KdqZF/

See also the {{if}} template tag API page.

link|improve this answer
feedback

You don't need the parentheses in that if statement. Try: {{if $data.Id === 1 }}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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