I need to add pagination in the faceted search page of Alfresco 5.2 version with Aikau 1.0.101.3 . How can I do this? Can you please provide me a sample
If you wanted to extend faceted search page then override faceted-search aikau page.
Location : <Alf_Home>\tomcat\webapps\share\WEB-INF\classes\alfresco\site-webscripts\org\alfresco\share\pages\faceted-search
and use your custom widget like this. FCTSRCH_SEARCH_RESULT is existing widget Id override this by using your custom widget like this searchResultWidget.name = "custom/alfresco/search/AlfSearchResult";
var searchResultWidget = widgetUtils.findObject(model.jsonModel.widgets, "id", "FCTSRCH_SEARCH_RESULT");
if(searchResultWidget) {
searchResultWidget.name = "custom/alfresco/search/AlfSearchResult";
}
Thank you for your response. Can you please tell me how can I add pagination in the faceted search page.?
Ask for and offer help to other Alfresco Content Services Users and members of the Alfresco team.
Related links:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.