I'm trying to show one div when a property is true and another if the property is false.
example: http://jsfiddle.net/FgVxY/151/
Using knockout I with the visible binding -> data-bind="visible: testTrue", works fine... But trying -> data-bind="visible: testTrue== false" doesn't...
<div class='eg'>
<input type='checkbox' data-bind="checked: testTrue" />
<br />
<div data-bind="visible: testTrue">true</div>
<div data-bind="visible: testTrue == false">false</div>
Does anyone have a sollution for this?