scottvonduhn
03/28/2019, 1:09 PMtemplateName
parameter like this:
renderer.addSearchResults({ templateName: 'mysearch', searchResult: searchResult });
Then, in your template, you will have a list variable that you can iterate over this way:
<#if mysearch?has_content>
<#list mysearch as result>
${result.column1} ...
</#list>
</#if>