• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Active Search in page

 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello friends,
I am thinking of making one search option for my application ,like google search.
E.g. If i start typing ja....
then immeditely for response it will give me options like ,, java,java server pages ..all the avialable option from database.

An active search tool/text box ,which w'll generate output on the basis of keywords typed.

I have seen some of the such application in live websites (e.g google, irctc.co.in search box for train booking.)

can anyone guide me which lang or technology i use to to this.

I'll be greatful if anyone can suggest me and guide me to go further on it.

Thanks.
 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One way to do this is by using JavaScript and AJAX. Assuming that you are just starting, you could search the web for JavaScript libraries. There are plenty of these and you could choose one as per your other requirements.
 
ashirvad jain
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi pradeep,
You are right i just stated on it. I m thinking of doing this for small apply.
I already did googlig but got lot of responses as well not sure wether thery are of my use.
Actually I am missing perfect keyword for search. Can you give me the perfect word or can describe any link which
might be useful for me for the start up.
Thanks & regards.
 
Pradeep Mudaliar
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Since we are discussing this on a Java forum, I would suggest you checkout Google Web Toolkit (GWT) - http://code.google.com/webtoolkit/.

Its a good solution for developing AJAX application. Using it, you can write your code in Java and its compiler would covert it to JavaScript.

So, visit the above url and I am sure you will be able to build your search app thereafter. In case, you are still stuck, continue this thread.
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What did you search for? The terms that should give you results are: Ajax AutoComplete or Ajax Suggest

Eric
 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ajax is having issues with browsers.
GWT is superb but performance threat, if you use it extensvely.
 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Arun Shekhar wrote:Ajax is having issues with browsers.



And that means what exactly?

Eric
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic