Displaying more items per page

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
gwb43
Ensign (ENS)
Ensign (ENS)
Posts: 6
Joined: Thu Mar 19, 2009 6:07 pm

Displaying more items per page

Post by gwb43 » Mon May 18, 2009 5:49 pm

Hi,
I am trying to display more than 15 items per page. How do I increase the displayed items per page?
Thanks

ZLA
Commodore (COMO)
Commodore (COMO)
Posts: 496
Joined: Fri Mar 13, 2009 2:55 pm

Re: Displaying more items per page

Post by ZLA » Mon May 18, 2009 9:21 pm

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

gwb43
Ensign (ENS)
Ensign (ENS)
Posts: 6
Joined: Thu Mar 19, 2009 6:07 pm

Re: Displaying more items per page

Post by gwb43 » Tue May 19, 2009 8:36 am

Thanks for the help. How do I get to the code behind the Category grid page?

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Displaying more items per page

Post by mazhar » Tue May 19, 2009 8:49 am

Edit ConLib/CategoryGridPage.ascx.cs file. That is the code behind, so locate desired info in that file as suggested above.

Post Reply