Hi,
I was no able to set the Page Size setting for product listing, so looking at source code at Sub populateList I've see that this setting was always overwitten by this code:
So my page size always show 9 items and not the number of default items value loaded by txtPageSize module setting!
There is any way to set this flag to false without modify the code?
Thanks!
I was no able to set the Page Size setting for product listing, so looking at source code at Sub populateList I've see that this setting was always overwitten by this code:
If flag Then
defaultReturn = SharedFunctions.getCookieQueryValueInt(Me.get_PortalId, "psize", listCookie, Me.Request, defaultReturn)
End If
in this sub header the flag value is initialized to true and so pagesize always is overwitten with method getCookieQueryValueInt that always return numer 9 because the combobox if in default setted to option Page Size 9!So my page size always show 9 items and not the number of default items value loaded by txtPageSize module setting!
There is any way to set this flag to false without modify the code?
Thanks!