Browsing List Back + Forward / Showing Entry X of Y

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • CeWa
    Junior Member
    • Oct 2014
    • 22

    Browsing List Back + Forward / Showing Entry X of Y

    I'd lik to have a way to browse through list (for example filtered contacs) with a back and forward button. Also showing entry X of Y. See screenshot for example.

  • yuri
    Member
    • Mar 2014
    • 8510

    #2
    Pagination for list view is already implemented in frontend. Just need to make some changes in js source to make it to work.

    But we don't want to make it in realease.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • CeWa
      Junior Member
      • Oct 2014
      • 22

      #3
      Great thanks! At least I know it's comming. Good for now.

      Comment

      • yuri
        Member
        • Mar 2014
        • 8510

        #4
        Hi

        Maybe you understood me not right. We don't wan't to make this feature available in EspoCRM. You need to do some customizations to enable it. Since code is mostly written it's not difficult.
        If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

        Comment

        • Frank
          Member
          • Aug 2015
          • 64

          #5
          in client/scr/views/record/list.js

          change false to needed option, to do this search this:

          /**
          * @param {string} or {bool} ['both', 'top', 'bottom', false, true] Where to display paginations.
          */
          pagination: 'both',

          Comment

          Working...