I have a button:
<button class="btn btn-primary" disabled.bind="!isValid" click.delegate="save()" title="Save">Save:${isValid}</button>
Oddly, the “Save:${isValid}” portion updates as the isValid attribute changes. But, the disabled attribute never changes.
This seems pretty simple as it matches many examples on the web.
Any idea what could cause only partial updates?
The value of isValid is updated by subscribing to validation events.
Thanks.