You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Ruth Hoffman (JIRA)" <ji...@apache.org> on 2009/09/06 20:09:57 UTC

[jira] Updated: (OFBIZ-2596) categorydetail.ftl page select drop-down and pagination is not compatible with new screen called categorydetailmatrix.ftl. [Screen uses 3 columns per row to display products vs 1 column per row from older versions.]

     [ https://issues.apache.org/jira/browse/OFBIZ-2596?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ruth Hoffman updated OFBIZ-2596:
--------------------------------

    Attachment: 2596-ecommercelist.jpg
                2596-categorylist.jpg

Added the "Purple Gizmo" to this category. Observe there are now 10 products in category.

2nd graphic - screen shot of the Promotions category. Only 9 products shown and no way to get to the 10th product. Pagination has been overwritten by the layout of the 3x3 product listing.

> categorydetail.ftl page select drop-down and pagination is not compatible with new screen called categorydetailmatrix.ftl. [Screen uses 3 columns per  row to display products vs 1 column per row from older versions.] 
> -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-2596
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-2596
>             Project: OFBiz
>          Issue Type: Bug
>          Components: order
>         Environment: Proposed change to the ~order/webapp/ordermgr/catalog/categorydetail.ftl screen
>            Reporter: Ruth Hoffman
>            Priority: Minor
>         Attachments: 2596-categorylist.jpg, 2596-ecommercelist.jpg
>
>
> First, someone should test this before committing! This is only a suggested change.
> See comments for more info info:
> Around line 23:
> Change: 
> <#if (viewIndexMax?int > 0)>
> To:
> <#-- if the list size/view size (that is total number of items allowed on the page  for this page)
>          is 0 or 1 then there is only 1 page of items - so display the pagination drop down anyhow 
>          'cause its cool and people should see it.
>  -->
>   <#if (viewIndexMax?int > -1)>
> If you change that then, the listSize number following this doesn't make sense - on the demo screen it displays "1 of 9" so,
> I propose that you also change line 37 from:
> <#if (listSize?int > 0) > 
> To something like:
>  <#if ((listSize?int - viewSize?int) > 0)> 
> so that the other text is not displayed in this case.
> Not sure how multipage, 3 column listings will render, but this will at least make the display for the demo store show pagination.
> Maybe someone who has more recent experience with this part of Freemarker pages can look at this really quickly and assess the impact overall.
> Thanks
> Ruth

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.