javascript - Backbone underscore Checkbox passing value issue - Stack Overflow

I have a very basic issue, but cannot see a solution to it. Maybe I need to change my way of thinking.

I have a very basic issue, but cannot see a solution to it. Maybe I need to change my way of thinking. Basically I am getting a model back in the JSON file, but I can't figure out how to convert true to checked. For example I know the {{-done}} is either true or false.

input type="checkbox"  id="chkName"   <%= {{-done}} ? "checked" : "" %>

I see loads of examples like this, but does not work for me. Is it because of the way I have brought back the true/false value.

Any help would be appreciated

I have a very basic issue, but cannot see a solution to it. Maybe I need to change my way of thinking. Basically I am getting a model back in the JSON file, but I can't figure out how to convert true to checked. For example I know the {{-done}} is either true or false.

input type="checkbox"  id="chkName"   <%= {{-done}} ? "checked" : "" %>

I see loads of examples like this, but does not work for me. Is it because of the way I have brought back the true/false value.

Any help would be appreciated

Share edited Oct 22, 2012 at 21:59 Jack 11k13 gold badges51 silver badges65 bronze badges asked Oct 22, 2012 at 21:54 Mark O KeeffeMark O Keeffe 3013 silver badges15 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 13

Your problem is that you are using the wrong type of Underscore.js template tag, the tag you are using is for interpolating a value and having it HTML-escaped.

To explain, there are three types of tags within underscore templates,

  1. <%= %> - Interpolate - Evaluates the data of the property and prints it.
  2. <%- %> Escape Evaluates the data and prints it HTML-escaped.
  3. <% %> Evaluate Allows you to execute JavaScript in your template.

In addition when executing JavaScript within your template you can use the Print method to print out some text (for example the results of an attribute).

Based on the above in your case you need to run a conditional within your template to print out checked if done evaluates to true. What you can therefore do is something like the following

<% if(done) { %> 'checked="checked" <% } %>

Or you can use the print method

<% print(done ? 'checked="checked"' : '') %>

Edit:

Based on the template you posted, the following template should work

     <script id="item-template"  type="text/template">   
         <input type="checkbox" id="toggle" <% print( done ?  'checked="checked"' : '') %> /> 
           <span class="text">{{-done}}</span>
           <a id="dele" data-role="button" data-inline="true" data-icon='delete' >Delete</a>
        </script>

Here is a link to a jsBin using the default ERB-style delimiters

And here's a second one using mustache style delimiters.

I tought I had it, but its simply always going in to the first condition. This is what I have. As you can see I'm printing out Done on the next line, which is showing true or false. Your code makes sense, just does not want to play ball. Would it be due to the script declaration?

        <div id="items">     
        <script id="item-template"  type="text/template">   
             <input type="checkbox" id="toggle" <% print( done ?  '' : checked) %> 
               <span class="text">{{-done}}</span>
               <a id="dele" data-role="button" data-inline="true" data-icon='delete' >Delete</a>

            </script>
        </div> 

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743689243a4490676.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信