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've got a very simple View Model:

var ViewModel = function() {
    this.showRow = ko.observable(false);
    this.toggleVisibility = function() {
        if(this.showRow == true){
            this.showRow = false;
        }
        else{
            this.showRow = true;
        }
        alert('showRow is now '+this.showRow); //only here for testing
    };
};

with equally simple markup:

<a href="#" data-bind="click: toggleVisibility">Toggle</a>
<br />
<table>
    <tr data-bind="visible: showRow">Some Text</tr>
</table>

My problem is, that when the link is clicked, the alert box shows (displaying the correct value - true/false)

However, the visible binding on the tr element doesn't seem to work - either initially (the row should be invisible on load) nor when the value of showRow toggles.

jsFiddle of above- http://jsfiddle.net/alexjamesbrown/FgVxY/3/

share|improve this question
1  
this.showRow = means you're overwritting the "observable" property. The property is a function, not just a value, when you're using the observable. – James D'Angelo Nov 26 '12 at 18:28

1 Answer

up vote 5 down vote accepted

You need to modify your html as follows:

<table>
    <tr data-bind="visible: showRow"><td>Some Text</td></tr>
</table>

If need to have tags inside of tags.

I've also modified your fiddle to simplify the javascript and follow newer code practices with regard to "this". See http://jsfiddle.net/FgVxY/4/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.