I am using javascript template with knockout.
<div data-bind="template: { name: 'treeElement', foreach: results }
">'
<script type=text/html>
<!--ko if: a>b -->
<div data-bind={textcontent:a}/>`
<!--/ko-->
</script>
something like above.. I am geting displayed div element with textcontetn with value of a however containerless binding is not getting applied.. a>b is not calculating. so its just ignoring syntax..
When you are writing the name of properties like that in comment binding you need to execute them in order to resolve them to their result as currently you are simply comparing two functions.
Furthermore your markup is invalid as both of your div tags are not closed and end with a wired single quote which makes bindings fail.
There is such binding in knockout known as
textcontent
.If you change your html to:
and we assume you have a view model similar to my construct of your scenario which is:
You should be good to go.
Here is also a working fiddle