{{#each movie}} {{name}} {{#each movie}} {{name}} {{#each movie}} {{name}}

iCheck not working in handlebars template

50 Views Asked by At
   <script id="my-template" type="text/x-handlebars-template">   
{{#each movie}}  
                <tr>     
                    <td style='vertical-align: middle;width:25%'>{{name}}</td>
                    <td style='vertical-align: middle;width:25%;text-align: center;'>
                        <input type="checkbox" name="option1" id="option1{{id}}" class="icheck"  value="{{option1}}"
                                {{#is option1 true }}
                                     checked
                                {{/is}} />
                    </td> 
                    

                </tr>
{{/each}} 
</script>

icheck is not working, it displays default checkbox. When used outside this script works perfectly.

0

There are 0 best solutions below