03-12-2018 06:28 AM
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
03-13-2018 01:21 AM
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";
}
03-13-2018 02:55 AM
Thank you for your response. Can you please tell me how can I add pagination in the faceted search page.?
Explore our Alfresco products with the links below. Use labels to filter content by product module.