I'm using PrimeFaces autocomplete with pojos, that shows results of a search. My code as follows:
<p:autoComplete id="searchBar" completeMethod="#{search.fetchSuggestions}" value="#{search.selectedSuggestion}"
var="searchResult" itemLabel="#{searchResult.entityName}" itemValue="#{searchResult.entityId}" converter="searchResultsConverter" >
<p:column>
<p:graphicImage value="/images/#{searchResult.entityDisplayPic}" width="40" height="50"/>
</p:column>
<p:column>
#{searchResult.entityName}
</p:column>
</p:autoComplete>
What values do I need to convert in the getAsObject() and getAsString() methods in the converter class?
My searchResult class looks like this:
public class SearchResult {//object that hold the data of a single search result
private int entityId;// may be userId/ groupId or etc etc in different cases
private String entityName;
private String entityDisplayPic;
}