meteor-autocomplete
meteor-autocomplete copied to clipboard
Client/server autocompletion designed for Meteor's collections and reactivity.
Let's say I have a simple collection: ``` javascript Contact = new SimpleSchema({ name: { type: String, unique: true } }); Contacts = new Mongo.Collection('contacts'); ``` And I want to...
When using autocomplete with a token, once the token is entered into the input/text field, all possible results (up to whatever limit was set) get returned and displayed in the...
Hello, I have used "autocompleteselect input" event to get selected item but it will not hide autocomplete box after item selection. And if I am not using "autocompleteselect input" event...
Is there a way to trigger the autocomplete when you just click in the input field?
I can't seem to focus on the input, I tried on a normal input and focus it using jQuery by its id and it works but with the input of...
Hi there, for a meteor project I need an autocomplete form and stumbled upon this cool project. What i want seems a little different, I need a multiple autocomplete, like...
Hi Is there a way to use the _id field of a document for saving to a collection but for searching and displaying, using a different field?
It would be nice if you could get all the mention in the text, mark up them, and return them as objects. Like this one: http://ivirabyan.github.io/jquery-mentions/ This jquery has a...
I found [Collection Helpers](https://github.com/dburles/meteor-collection-helpers) very useful to generate derived attributes for collections. If this package could support matching fields of derived attributes, it would be very neat. I don't quite...
I have a textbox which I use 'enter' keyup event to submit the value. The problem is the autocomplete also use the 'enter' keyup event to select the suggestion. So...