Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Get number of records in grouped ListGrid without group headers

    I have a ListGrid instance with grouping enabled. I display the total number of records above it using the grid's getTotalRows() method. If my JSON request returns 2 rows, it also returns a totalRows property set to 2. However, if those two records are grouped in two groups, this.getTotalRows() returns 4. Is it possible to retrieve the original 2?

    #2
    You should be able to measure the length of grid.getOriginalData()

    Comment


      #3
      Thanks a lot!

      Comment

      Working...
      X