Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We were trying out knockout template to render dynamic controls 2 per row based on odd/even position as shown below.To achieve this functionality we tried using ko condition to insert new for even element and for odd element but only Data1,Data3,Data5 is rendered and not Data2,Data4,Data6.

Data1 Data2 
Data3 Data4 
Data5 Data6 



<script type="text/html" id="QuestionAnswerParentTemplate">
<!-- ko 'if' : $parent.evenElement(AnswerControlType) -->                      // custom method to return true or false based on dataIndex % 2 == 0
      <tr>
           <td class="FieldTitle" width="25%" align="right">
               <label data-bind="text : QuestTxt"></label>
           </td>
            <td width="25%" align="left"><div data-bind="template: { name: 'QuestionAnswerChildTemplate', data: $data }"></div></td>
<!-- /ko -->
<!-- ko 'if' : $parent.oddElement(AnswerControlType) -->
            <td class="FieldTitle" width="25%" align="right">
               <label data-bind="text : QuestTxt"></label>
            </td>
           <td width="25%" align="left"><div data-bind="template: { name: 'QuestionAnswerChildTemplate', data: $data }"></div></td>
      </tr>
<!-- /ko -->
</script>


<script type="text/html" id="QuestionAnswerChildTemplate">
  <input data-bind="value : AnswerVal"></input>  // textbox control

</script>



<table>
  <tbody data-bind="template: { name: ‘QuestionAnswerParentTemplate’, foreach: setupInfoModel}"></tbody>
</table> 



Please help
share|improve this question
Show us some JavaScript. For example: how is DataN held and how it interacts with KnockoutJS? – freakish Jul 11 '12 at 15:12
we have placed the code in link .Please let us know for any questions. Thanks @freakish – user1518146 Jul 12 '12 at 14:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.