Use this tag if your question is relating to jQuery Plugin easyautocomplete
Questions tagged [easyautocomplete]
55 questions
1
vote
1 answer
Avoid the redirect action bind by previous javascript code
I use easyautocomplete plugin(http://easyautocomplete.com/guide), I use some custom JavaScript to bind keydown event to search input which redirect the page to suggestion page when user press "ENTER"
,
But it redirects the page even when the…

nikhil123
- 48
- 1
- 10
1
vote
1 answer
Abort previous ajax request on easy auto complete
I am using a easyAutoComplete plugin. I need to abort previous ajax request on new request.
Here is the link of plugin which I used.
http://easyautocomplete.com/
and my code is
var options = {
url: function (phrase) {
return…

Abhijith A Nair
- 53
- 9
1
vote
1 answer
Storing JSON result from ajax request to a javascript variable for Easyautocomplete
I'm trying to implement the EasyAutoComplete plugin on a field based on the value filled in another field, using ajax requests.
I have a customerid field and when it's value changes, I want the productname field to show all products related to that…

Inception
- 455
- 1
- 9
- 32
1
vote
2 answers
PHP Object array to javascript associative array
I have a PHP object array as follows:
array(223) {
[0]=>
object(stdClass)#5 (9) {
["id"]=>
string(2) "10"
["name"]=>
string(10) "Cyclops"
["address"]=>
string(13) "GSDG"
}
[1]=>
object(stdClass)#6 (9) {
…

Inception
- 455
- 1
- 9
- 32
1
vote
2 answers
easy autocomplete key enter
I'm hoping I can get some help on working with jquery easy autocomplete. It works fine but I can't enable the Key Event (I would like that we will be redirect to the correct link when pressing Enter key). I wanna use onChooseEvent but I'm not sure…

Alice J
- 11
- 3
1
vote
1 answer
ajax easyutocomplete only returns first 6 values
I'm trying to follow this example: http://easyautocomplete.com/example/ajax-get to create an input field that will autocomplete hints from API.

Hadriaki
- 11
- 5
1
vote
0 answers
How To Retrieve More Than One "GetValue" From JSON/AJAX search
Ok, I'm struggeling with JSON, AJAX, Javascript and PHP.
Well, actually its only Javascript.
I want to have a input field which operates as a AutoSearch field.
I am using currently EasyAutoComplete.
But that doesnt really matter. What does matter…

Dawko
- 77
- 1
- 1
- 7
1
vote
1 answer
jquery EasyAutoComplete error when list match enabled: true
I am trying to use the EasyAutoComplete plugin to search a json file. I only want to call the service once to search the json.
$( document ).ready(function() {
var player_values = (function () {
var json = null;
$.ajax({
'async': false,
…

Josh
- 15
- 5
1
vote
0 answers
Autocomplete Rails Responsive Layout
I'm trying to get my search form back to mobile responsive.
data: { behavior: "autocomplete" } in the form triggers easy-autocomplete functionality. But the search form/layout becomes mobile unresponsive when I add "data: { behavior: "autocomplete"…

Charlie
- 236
- 2
- 13
1
vote
2 answers
jquery easy autocomplete url function
I'm hoping I can get some help on working with jquery easy autocomplete. I am trying to create a url function that calls an html page that has a javascript xmlrpc function, and returns a list of name in json format. All I get in the web console…

user7242751
- 21
- 3
1
vote
1 answer
easyautocomplete: is that possible to pass an array to getValue method?
For example, i want to search the word in "name" and "code" fields at the same time. How can i do that?
Maybe something like:
getValue: "name", "code",
var options = {
url: "http://easyautocomplete.com/resources/countries.json",
getValue:…

radeveloper
- 926
- 2
- 12
- 20
0
votes
0 answers
EasyAutocomplete with JSON file
i have problems connecting a json file with EasyAutocomplete.
My code is:

Florian Pichler
- 1
- 2
0
votes
0 answers
Error: File to import not found or unreadable: easy-autocomplete/dist/easy-autocomplete
i want to install ruby website on my machine but i have this probleme hwo can help me

Bouregaa Samiha
- 31
- 1
- 1
- 3
0
votes
2 answers
How to access user-entered form data from the controller
I have 2 easy-autocomplete form fields that I want to act like nested dropdowns.
They each have listeners that invoke a call to the controller which in turn populates the dropdown. This is working.
When the controller call for the second field is…

Jere Neal
- 19
- 6
0
votes
0 answers
Trying to implement easy-autocomplete search in Rails 7 application
I am trying to adapt this terrific script / functionality from GoRails from a few years ago, to a Rails 7 application (which uses jsbundler-rails for javascript…

tkhobbes
- 368
- 3
- 16