lukek
lukek

Reputation: 478

How to display results of Smartsearch

I'm creating a webpart that uses the SearchHelper to get smart search results based on the search paramaters to display in a live search via Ajax.

I am looking for a way to display the results using the dataset that

SearchHelper.Search(SearchParameters) 

returns in the same manner that the SearchResults webparts work.

Upvotes: 0

Views: 477

Answers (1)

lukek
lukek

Reputation: 478

Ok never mind, found the answer. The answer is to just use the BasicRepeater.

var results = SearchHelper.Search(sp);
BasicRepeater br = new BasicRepeater();
br.DataSource = results;
br.ItemTemplate = CMSDataProperties.LoadTransformation(this, CMS.Root.SmartSearchResults", false);

Upvotes: 1

Related Questions