Page 1 of 1
Displaying more items per page
Posted: Mon May 18, 2009 5:49 pm
by gwb43
Hi,
I am trying to display more than 15 items per page. How do I increase the displayed items per page?
Thanks
Re: Displaying more items per page
Posted: Mon May 18, 2009 9:21 pm
by ZLA
What conlib control are you using? You probably just need to look at the code behind. For example CategoryGridPage4 has the following code:
Code: Select all
private int _Cols = 3;
private int _Rows = 5;
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
Re: Displaying more items per page
Posted: Tue May 19, 2009 8:36 am
by gwb43
Thanks for the help. How do I get to the code behind the Category grid page?
Re: Displaying more items per page
Posted: Tue May 19, 2009 8:49 am
by mazhar
Edit ConLib/CategoryGridPage.ascx.cs file. That is the code behind, so locate desired info in that file as suggested above.