I have problem binding polymer-ui-toggle-button to a boolean value and it looks like a bug to me. The toggle receives the initial value from my model but does not update the model after a change. Also, two toggles don't reflect each other changes. Any ideas?
<polymer-ui-toggle-button value="{{isThisFantasy}}"></polymer-ui-toggle-button>
t2.model = {
isThisFantasy: true
};
The above fiddle also tries binding to a regular HTML checkbox input. It fails, probably because value gets converted to string. Is there a way to bind a boolean to a checkbox input?
br
Marcin