patternfly / angular-patternfly

This repo contains instructions and the code for a set of Angular 1 components for the PatternFly project.
http://www.patternfly.org/angular-patternfly/
MIT License
122 stars 90 forks source link

pfBootstrapDatepicker does not have an output binding #730

Closed wywywywy closed 6 years ago

wywywywy commented 6 years ago

At the moment you can input a Date to the pfBootstrapDatepicker, but it has no output because it is a one way binding, so this does not make the component very useful.

It should have an onUpdate & binding to a callback to the parent.

bindings: {
  onUpdate: '&'
}

Or am I missing something?