On Thu, Aug 18, 2011 at 12:14 PM, nagarjuna <nagarjuna.avul...@gmail.com> wrote: > hi every body... > i queried following solr query > http://localhost:8080/solr/db/select/?q=test&version=2.2&start=0&rows=10&indent=on&fl=keywords&omitHeader=true > http://localhost:8080/solr/db/select/?q=test&version=2.2&start=0&rows=10&indent=on&fl=keywords&omitHeader=true > to get the all keywords started with letter "t"........now i have one jquery > page with search field and ineed to get all the keywords from my solr url > and i need to show as autocomplete search field...please help me to do this [...]
This question is not really related to Solr, and you are probably better off asking it on a jQuery forum, showing them an example of the results returned by Solr. What you need to do is parse the XML returned by Solr, retrieve the values you require, and use them to build your field. This is probably easier to do in some back-end, rather than in jQuery/Javascript, but there is apparently a jQuery plugin for parsing XML, jParse. Again, it is not completely clear what you are trying to do. If what you want is auto-complete, there are better ways of doing this: Searching Google for "Solr autocomplete" turns up several possibilties. Regards, Gora