Using a custom callback allows processing the value before passing it to the target property: button.bind( 'isEnabled' ).to( command, 'value', value => value === 'heading1' ); It is also possible to bind to the same property in an array of observables. To bind a button to mult...