lukemadera / meteor-autoform-googleplace

Google Places Autocomplete input (without map). Returns an object with formatted address components
21 stars 19 forks source link

[Feature Request] Trigger event on selection #19

Open deeeed opened 8 years ago

deeeed commented 8 years ago

Could it be possible to trigger an event at the end of a selection ?

Template.myformtemplate.events({
    "newadress #myfield": function(evt,tpl) {
          var adressdata = AutoForm.getInputValue(...);
          // update the UI with the data 
   }
})

Thanks