I have a Refinement Web Part with the "Maximum number of refiner values" property set to 3.
However, I want to add a Show All button, which when clicked will list all the values. Does anybody have any ideas on how to achieve this?
I did something similar for the Search Result web part by added a button and some javascript to the display template which updated the default number of items -
document.getElementById("viewAllButton").onclick = function () { ctx.DataProvider.set_resultsPerPage(500); ctx.DataProvider.issueQuery(); }; Was hoping use a similar approach but can find the property that sets the refinement row count.