admin管理员组文章数量:1345076
I am trying to implement tree structure using bination of knockout.js and jquery-mobile-ui collapsible-set. Since tree can be substantially large, I am using 'if' bindings to prevent data processing before tree node is expanded. When tree node is expanded I want to use virtual knockout binding, using normal binding produces side effects in jquery-mobile-ui. When I expand node I can see
<!-- ko data-bind= template: { name: 'treeTemplate', foreach: $parent.Children } --><!-- /ko -->
I don't get any binding errors, however template is not being rendered. I can see that element is bound by calling
ko.contextFor($('.sss').contents().filter(function(){ return this.nodeType == 8;})[0]);
and it has $parent.Children not empty (Screenshot). Question: Is virtual template binding is supported in knockout.js and if it is what am I doing wrong? Any help or ideas how to debug current situation will be much appreciated.
I am trying to implement tree structure using bination of knockout.js and jquery-mobile-ui collapsible-set. Since tree can be substantially large, I am using 'if' bindings to prevent data processing before tree node is expanded. When tree node is expanded I want to use virtual knockout binding, using normal binding produces side effects in jquery-mobile-ui. When I expand node I can see
<!-- ko data-bind= template: { name: 'treeTemplate', foreach: $parent.Children } --><!-- /ko -->
I don't get any binding errors, however template is not being rendered. I can see that element is bound by calling
ko.contextFor($('.sss').contents().filter(function(){ return this.nodeType == 8;})[0]);
and it has $parent.Children not empty (Screenshot). Question: Is virtual template binding is supported in knockout.js and if it is what am I doing wrong? Any help or ideas how to debug current situation will be much appreciated.
Share Improve this question edited Apr 23, 2014 at 16:11 Matas Vaitkevicius asked Apr 23, 2014 at 16:02 Matas VaitkeviciusMatas Vaitkevicius 61.6k37 gold badges248 silver badges276 bronze badges1 Answer
Reset to default 15Skip the data-bind
= in your virtual element, just do
<!-- ko template: { name: 'treeTemplate', foreach: $parent.Children } --><!-- /ko -->
Just a quick tip for reading up on debugging: http://www.knockmeout/2013/06/knockout-debugging-strategies-plugin.html
本文标签: javascriptknockoutjs virtual template bindingStack Overflow
版权声明:本文标题:javascript - knockout.js virtual template binding - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743770445a2536026.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论