Hi,
I am trying to display more than 15 items per page. How do I increase the displayed items per page?
Thanks
Displaying more items per page
Re: Displaying more items per page
What conlib control are you using? You probably just need to look at the code behind. For example CategoryGridPage4 has the following code:
Increasing those values would change the number (currently at 3 * 5 = 15) of items displayed.
Some of the category grids may also use values specified in the markup if it's a datalist, for example RepeatColumns="3".
Hope that helps.
ZLA
Code: Select all
private int _Cols = 3;
private int _Rows = 5;
Some of the category grids may also use values specified in the markup if it's a datalist, for example RepeatColumns="3".
Hope that helps.
ZLA
Re: Displaying more items per page
Thanks for the help. How do I get to the code behind the Category grid page?
Re: Displaying more items per page
Edit ConLib/CategoryGridPage.ascx.cs file. That is the code behind, so locate desired info in that file as suggested above.