meteor-autocomplete
meteor-autocomplete copied to clipboard
Client/server autocompletion designed for Meteor's collections and reactivity.
Adds a new `autoSelect` boolean option (default is `true`) that controls whether the first search result should be automatically selected or not. Setting it to `false` is useful when using...
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...
I'm having trouble removing what is inserted before the value of the field upon insertion in the text, \n in this case. Where is that option or how to deal...
I did not specify a token in my settings option, but it is only searching from the start of the string. How would I search anywhere in the string? I...
I tried using a blank template in the `noMatchTemplate` field but it still pops up a small window underneath. Is there a way to remove this completely?
This is maybe not the right place for it, but this example really would have helped me wrap my head around how the publishing works.
An entry of "@mizzao" would result in just the "mizzao" appearing after selection, if the removeToken rule is true. Would this work?
Added a customized loading template, that enables overriding the default loading template. It is useful when using this packages in different locales
Extended the server rules to use 'subscriptionParams' object. This object may be provided in the settings->rule schema and enable sending the server subscription additional args within this object. In case...
Is something im missing? ``` {{> inputAutocomplete settings = settingsMentionsSearchInput id="searchMentions" class="pull-right" placeholder="Search" value="@{{this}}"}} ``` this return @{{this}} as plain text on the autocomplete.