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

Autocompletion depending on context #124

Closed ghost closed 8 years ago

ghost commented 8 years ago

Hi,

I would like to implement an autocompletion based on the beginning of the string. I have a separator like . between the fields. So for instance I would have: context1.c1field1 context1.c1field2 context2.c2field1 context2.c2field2

I have 3 collections:

I would like to trigger the auto-complete at the beginning based on the 1st collection then depending on what was the input from the user auto-complete based on the 2nd or 3rd collection.

Is that doable easily with this component?

Thanks