All Questions
29 questions
1
vote
1
answer
282
views
Stuck in implementing autocomplete from data from restFul API
I am trying to implement the autocomplete search bar in the UI.
HTML:
<div>
<input type="text" name="apexClass" id="autocomplete"/>
</div>
I have used the devbridge js:
$('#...
0
votes
1
answer
627
views
JQuery : How to call autocomplete function on focus?
I have an autocomplete function that works really fine but now what i am tryin to do is call the autocomplete function onfocus which i tried but is not working.
Below is my code:
function ...
0
votes
1
answer
99
views
How to get correct data from JQuery Auto Complete when multiple data are sent?
I am trying to imeplement auto complete feature in my web application. The data are loaded to the AutoComplete features from my server. I am using Jquery AutoComplete for this purpose - http://...
0
votes
1
answer
368
views
jQuery autocomplete with java custom data and display store value
I am working on jQuery autocomplete with java. I am trying to display my level and my address but only enter level in my field once I click on the choice but in the back end store only value when i ...
0
votes
2
answers
1k
views
jquery - Autocomplete how to force select from list or user can type value from list and Submit form
I have a form in which have one autocomplete text field and submit button. on Autocomplete text I have below code which uses change event which basically empty out the text field if value is not part ...
1
vote
1
answer
1k
views
How to split the data returned in jQuery autocomplete between two different HTML elements
I need some help with jQuery autocomplete.
Basically, I would like to split each set of data returned between two HTML elements. Here is my working code that returns the entire data only in one ...
1
vote
0
answers
751
views
AutoComplete not working in jsp
I'm writing a small program for autocomplete in Java. And it is as below.
Index.html
Autocomplete in java web application using Jquery and
JSON
...
0
votes
1
answer
396
views
JQuery Autocomplete function- Selected value doesn't get available in the spring bean class
I am working on replacing a large dropdown ( which makes a performance impact due t browser rendering) with a Jquery autocomplete input box. I can get the autocomplete functionality to work however ...
0
votes
0
answers
286
views
Need list key and not list value from autocompleter struts2 tag
Struts2: I want to get List key in my action class from the autocompleter list and still want to display list value to the user.
For eg:
<sx:autocompleter key="select Fruit"
list="FruitsList" ...
0
votes
1
answer
2k
views
ArrayList iterate inside jQuery
I have passed arraylist from Servlet to JSP using session. I want to use autocomplete textbox with values from that arraylist. but i am not sure how to do that..
My list is
<%! List l1=new ...
3
votes
1
answer
121
views
Bring SQL data to jquery availabletag
I'm trying to make the autocomplete textbox, but how can i include SQL Data to jquery available tag and loop it? I failed to perform the function based on the following code. Any help would be ...
0
votes
2
answers
748
views
How to send the selected value in a autocompleter as a parameter in a URL?
I'm working with Struts 2 and jQuery plugin .
I have a JSP with a sj:autocompleter which need to submit its value as a parameter in a sj:a.
<s:url id="loadClientURL" action="loadClient"/>
<...
0
votes
1
answer
694
views
How to pass JSON Array inside JSON object to jQuery autocomplete
I am using jQuery autocomplete to receive specific data via Ajax call. The data I receive from Ajax call is a JSON object which contain a JSON array in it. I need to show each result of this json ...
1
vote
1
answer
498
views
Auto complete feature on whole web application
I working on java web application. I need to implement auto complete feature on whole site.
Irrespective of form/application autocomplete should bring all date available in my database(even from ...
-1
votes
1
answer
175
views
jQuery autocomplete servlet retun values
for a Java Servlet project I need to create an autocomplete.
So I am using the jQuery autocomplete plugin.
It is embed in a jsp file 'autocomplete.jsp'
<html>
<head>
<link rel="...