Use this tag if your question is relating to jQuery Plugin easyautocomplete
Questions tagged [easyautocomplete]
55 questions
0
votes
0 answers
how to JSON.parse data from server before getValue function runs?
I have the following setting for my easyautocompelete input box:
var optionsCCGSavingsAutocomplete = {
url : "/api/sitecore/SirduplaCoUkCalculator/AutoCompleteCCGSavings",
getValue: function(element) {
//…

Alexander Solonik
- 9,838
- 18
- 76
- 174
0
votes
1 answer
easyautocomplete - Opening links in new tab
I am using the links template and would like to open the links in a new tab (target=_blank). Is there an easy way to do this?
template: {
type: "links",
fields: {
link: "url"
}
…

Aref
- 1
- 1
0
votes
1 answer
easyautocomplete plugin - Fill text box while selecting an item from suggestion list
I'm trying to integrate easyAutocomplete plugin now,
Now am trying to Fill email text box while selecting an item from suggestion list.
Am using json placeholder api - https://jsonplaceholder.typicode.com/users
Once user clicked on any of the…

user3066595
- 37
- 1
- 7
0
votes
1 answer
Array is parsing as string in auto-complete control
I am using EasyAutoComplete to provide auto-complete control on my page.
I am passing it an array as a variable. The variable is an array that I can step through with index and looks good to me. But when passed to this plugin, the input control only…

m0lochwalker
- 422
- 3
- 11
0
votes
1 answer
prevantDefault() not working on easyAutocomplete events
I am working with http://easyautocomplete.com/. It's working fine but when I am trying to disable select on click, It's not working.
When I am trying to disable default action on onClickEvent/onChooseEvent, It's showing Uncaught TypeError: Cannot…
0
votes
2 answers
Easyautocomplete + sweetalert2 = disappear scrollbar in IE 11/Edge
I've got the following functionality. When I click the button the sweetalert2 popup opens with the easyautocomplete list. The items are fetched by ajax while typing. When there are too much items and they don't fit in the box the scrollbar appears.…

bergee
- 111
- 5
0
votes
1 answer
Fail to load response data jquery.easy-autocomplete.min.js:10 WARNING:
I am using the easyautocomplete, http://easyautocomplete.com/, to populate a list as the user types in a search field. The code is as follows:
var options = {
url: function(phrase) {
if (phrase !== "") {
return…

Jeremy Cowan
- 563
- 4
- 13
0
votes
1 answer
Customizing easyAutoComplete
var options = {
url: function (phrase) {
return "location/autoComplete?key=" + phrase;
},
getValue: "cityName",
template: {
type: "custom",
method: function (value, item) {
…

Prashant Khanal
- 249
- 2
- 11
0
votes
1 answer
Using REST API with jQuery Easyautocomplete plugin
I'm having trouble getting the easyautocomplete plugin to connect to my data source and pull the title of each object within the JSON. A sample of the JSON looks like this:
data: [{
id: "1",
title: "bob",
permalink:…

Matt
- 1,561
- 5
- 26
- 61
0
votes
0 answers
How to prevent table from expanding dynamically in css?

Ishant Sahu
- 75
- 2
- 7