legacy-knowledge-base
公開されました Jun. 30, 2025

Paginator is not showing intermediate pages in mobile render

投稿者

Apsara Raheja

knowledge-article-header-disclaimer-how-to

knowledge-article-header-disclaimer

legacy-article

learn-legacy-article-disclaimer-text

Issue

  • The default Pagination Taglib Scroll is not showing intermediate pages in PWA mode.
  • Steps to reproduce:

    1. Set search.container.page.default.delta=4 in the portal-ext.properties.

    2. Start Liferay and create, at least, 84 documents with a similar word in the title, let’s say “Bilbao”.

    3. Go to mobile navigation (for example, using the browser console)

    4. In Documents&Media search for “Bilbao”, at least 21 pages should be visible.

    5. Check intermediate pages.

  • Expected behavior: All intermediate pages should be visible between 4 and 20.
  • Actual behavior: There are no intermediate pages beyond 19.

Environment

  • Liferay DXP 2023 Q4.4

Resolution

  • The observed behavior is a known bug that has been addressed by: LPD-37458
  • If a hotfix is required for this issue, please create a support ticket requesting a hotfix by attaching patch details.
  • Installing Fix Packs and Hotfixes on Liferay DXP will guide you to install this hotfix in the respective environment.

Additional Information

  • In the custom theme (customs.scss file), the user needs to add the below code to resolve the above-mentioned issue:
    @include media-breakpoint-down(md) {
    ul.pagination ul.inline-scroller {
    max-height: inherit;
    }
    }
  • Apply the above code in customs.scss file, build the theme and deploy the war file again inside the deploy folder
did-this-article-resolve-your-issue

legacy-knowledge-base