It would be nice to have some additional "flow control" for the MVVM framework, including ...
"if" -
<div data-bind="if: [property]">
// renders if the given value is true
</div>
and "not"
<div data-bind="not: enabled">
// renders if the given value is false
</div>
and "each"
<div data-bind="each: array">
// renders this section for each item in the array given
</div>
I know some of this can be achieved with templates, but this would make it very convenient and mean we did not have to use templates everywhere, and could lead to much more natural coding.