Closed dam0vm3nt closed 9 years ago
Binding to disabled property of a paper-button with a non null bool value will cause the button to appear always in disabled state regardless of the property value (true or false):
disabled
paper-button
bool
true
false
<paper-button id="but" disabled="{{isButtonDisabled}}"></paper-button>
Setting the property manually from dart ($["but"].disabled = isButtonDisabled) will work.
$["but"].disabled = isButtonDisabled
Don't know if this is a bug in polymer , polymer-dart or polymer-elements.
polymer
polymer-dart
polymer-elements
ignore this.
Binding to
disabled
property of apaper-button
with a non nullbool
value will cause the button to appear always in disabled state regardless of the property value (true
orfalse
):Setting the property manually from dart (
$["but"].disabled = isButtonDisabled
) will work.Don't know if this is a bug in
polymer
,polymer-dart
orpolymer-elements
.