Meteor-Community-Packages / meteor-autocomplete

Client/server autocompletion designed for Meteor's collections and reactivity.
https://atmospherejs.com/mizzao/autocomplete
MIT License
350 stars 109 forks source link

Empty popup with right number of blank positions #79

Open abtx opened 9 years ago

abtx commented 9 years ago

I'm getting the autocomplete popup, but it's empty. I'm using a template to display it, the helper looks like this: Template.userPill.helpers({ friendCollection: function() { return MyCollection.find().fetch(); } }) (or without .fetch()), it doesn't return the names {{name}}. I'm using Simple Schema with this, which shouldn't affect anything here, should it?

mizzao commented 9 years ago

Probably user error? I'm not sure where you are using that helper, but that's not how you access a collection with this package.

schillerk commented 7 years ago

@abtx did you ever fix this?