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.

Thanks for any help.
qtp2? better yet, can you provide a fiddle focused on this problem? – jimmym715 Aug 29 '12 at 17:10qtp2probably 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