2

According to this article, they cannot at the time it was made, which was 2018: https://asiablog.acumatica.com/2018/07/page-number-on-acumatica-grid.html

Are there any plans to implement this customization for the future or any way to do this differently today? A customer would like grids on base Acumatica pages to be paginated with record counts.

EricP.
  • 489
  • 3
  • 21

1 Answers1

1

You can use the Status Field of the Grid for this. So the idea is to calculate the quantity of the records in the View Delegate in the Graph and then just set it as the "StatusField" of the Grid in the same way as Acumatica is calculating the Available and Available for Shipments in the Sales Order Details grid.

enter image description here

Samvel Petrosov
  • 7,580
  • 2
  • 22
  • 46
  • What would I put into the Status Field that would show the current record count and position? – EricP. Mar 12 '21 at 19:02
  • @EricP. There is no out-of-box value for that. You need to calculate the numbers, build the string and set it as StatusField to the grid similar to what Acumatica is doing for Availability information.https://ibb.co/P6tgxjk – Samvel Petrosov Mar 12 '21 at 20:18
  • Thanks, I'll mark your answer as certified. I'll inform the customer and see how they want to move forward. I appreciate your time Samvel! – EricP. Mar 15 '21 at 14:32