Revo 2.3.3
I have a (front-end) members area which has a main listing of articles written by a particular author. The listing is broken into categories:
Section 1
Section 2
Section 3
Using getPage each section only displays articles from its category with the max number hard-coded to 5 per section (&limit=`5` in the snippet call). Of course pagination kicks-in when necessary. So far so good.
Instead of imposing a fixed limit of 5, I would like to give the user the ability to select from a few predetermined options. So let's say 5 is the default number of articles to show, the user could use a picker to change it to 10, 15 or Show All.
Ideally I would like to be able to do this for each section (independent of the other sections). However, if that's not doable then I single picker for all 3 sections is acceptable.
Todd