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.

I am generating some html using template of knockout binding.

Here is my model

 {"PagesList":
 [{"QuestionList":
 [
    {"ParentQid":191,"QuestionId":192,"QuestionText":"Enter Question Text","QuestionType":2,"OptionsList":
    [
        {"QuestionId":192,"OptionId":95,"OptionText":"Option1"},
        {"QuestionId":192,"OptionId":96,"OptionText":"Option2"}
    ]
    },
    {"ParentQid":191,"QuestionId":193,"QuestionText":"Enter Question Text","QuestionType":2,"OptionsList":
    [
        {"QuestionId":193,"OptionId":97,"OptionText":"Option1"},
        {"QuestionId":193,"OptionId":98,"OptionText":"Option2"}
    ]
    },
    {"ParentQid":191,"QuestionId":194,"QuestionText":"Enter Question Text","QuestionType":2,"OptionsList":
    [
        {"QuestionId":194,"OptionId":99,"OptionText":"Option1"},
        {"QuestionId":194,"OptionId":100,"OptionText":"Option2"}
    ]
    }
],"PageId":1149,"PageName":0
}]
}

and here is my page template

    <script type="text/x-jquery-tmpl" id="layoutpages">
        <div data-bind="attr: {id: PageId }" type="page">  
           <div data-bind="template: {name:'qtp2', foreach: QuestionList}"></div>
           <div class="questiontype" data-bind="attr: {id: PageId }">
              <label style="font-size:14px;color:#011828"  >Add Question</label>
           </div> 
       </div>
   </script>

its binding the data perfectly. But the problem is its not bind the id=1149 to the class= questiontype div dont know what the issue is ? i have tried like these ways .

 data-bind="attr: {id: PageId() }"
 data-bind="attr: {id: PageId()+'_plabel }".

but its not working.

enter image description here

Thanks for any help.

share|improve this question
can you post your template for qtp2? better yet, can you provide a fiddle focused on this problem? – jimmym715 Aug 29 '12 at 17:10
1  
@jimmym715: I think that is exactly the problem, qtp2 probably doesn't exist. The bindings fail when that div is processed so all following bindings are not processed. – Jeff Mercado Aug 29 '12 at 18:56

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.