meteor-autocomplete icon indicating copy to clipboard operation
meteor-autocomplete copied to clipboard

Client/server autocompletion designed for Meteor's collections and reactivity.

Results 68 meteor-autocomplete issues
Sort by recently updated
recently updated
newest added

Hello, I use inputAutocomplete, to search in a Collection called Sales, to return a field Product.name. I need, that the autocomplete search, return two fields, in this case, Product.name and...

I have a popup model on a page in which there is a inputAutocomplete template (which is basically a text input box) in which after typing "@" a list of...

Hello How can I change the code so the Auto-complete starts after entering the n-th letter.

Using 0.5.1, when setting position to 'bottom' ('top' works fine), I'm seeing the container overlap the input field, so the user can't see what's being typed. Tried to correct by...

The subscription param isn't well documented. Would be easier to implement if it was clearer.

question

Attempted to do it this way but it did not work ``` settings: function() { return { position: 'bottom', limit: 5, rules: [ { collection: Models, field: 'name', matchAll: true,...

How can I edit the CSS? It keeps closing when viewing on chrome console.

Hi, ## I am looking for a use-case as below: I am considering the same data as provided in the sample application. Template.single.helpers({ settings: function() { return { position: Session.get("position"),...

I have seen a few examples like below: ``` selector: function(match) { regex = new RegExp(match, 'i') return {'profile.firstName': regex} } ``` I am actually trying the code above. If...