Re: Search result at next component

2014-07-30 Thread Lee Chunki
Hi Ahmet, it’s working :) Thank you Chunki. On Jul 31, 2014, at 7:48 AM, Ahmet Arslan wrote: > Hi Lee, > > You can use : > final DocList docList = rb.getResults().docList; > > And if you want to access individual field values, use solrpluginutils' > static method to obtain SolrDocumentList

Re: Search result at next component

2014-07-30 Thread Ahmet Arslan
Hi Lee, You can use : final DocList docList = rb.getResults().docList; And if you want to access individual field values, use solrpluginutils' static method to obtain SolrDocumentList SolrDocumentList solrDocs = docListToSolrDocumentList(rb.getResults().docList, req.getSearcher(), fields); Ah