I'm binding table rows using foreach statement. The row HTML markup is:
<tr data-bind="css: 'new-row', rowClick: $parent.editCost">
I would like to do something like this:
<tr data-bind="css: 'new-row', if: $index() > 0 {rowClick: $parent.editCost} ">
Is something like this possible?