Newer
Older
TalkjaSolr / web / WEB-INF / jsp / _facet_field.jsp
@haya4 haya4 on 17 Mar 2019 588 bytes 1st
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%
if(facetField != null){
  List<Count> facetCountList = facetField.getValues();
%>
<h2><%=SearchUtil.getFacetLabel(facetField.getName()) %></h2>
<div id="<%=facetField.getName()%>">
<%
  if(facetCountList != null){
    for(Count count : facetCountList){
	String linkStr = SearchUtil.getLinkStr(query,fq, facetField.getName()+":"+count.getName(), 0);
%>
<a href="./index.html<%=linkStr%>"><%=StringEscapeUtils.escapeHtml(count.getName())%>(<%=count.getCount()%>)</a><br>
<%
    }
  }
}
%>
</div>