Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

155
Vistas
Pagination calculation (Result Per page calculation after sorting)

I'm trying to develop pagination, and I'll need to figure out how to limit my result set by item offset. I managed to implement the start, end, and total page count in some way. However, when I sort the product data, the start, end, and total page count values remain the same.

eg.

before sorted -> Showing 1 to 10 of 60 ( 6 pages)

after sorted -> Showing 1 to 10 of 0 ( 0 pages)

const totalProductCount = 60
const resultPerPage = 10
const currentPageNumber = 1
const totalPageCount = Math.round(totalProductCount / resultPerPage)
const from = parseInt((currentPageNumber - 1) * resultPerPage) + 1
const to = parseInt(currentPage * resultPerPage)

console.log(Showing {from} to {to} of {totalProductsCount} ({totalPageCount} Pages))

// Showing 1 to 10 of 60 ( 6 pages)

However, after the data is sorted, the totalProducts count falls to 0, and the result remains the same.

const totalProductCount = 0
const resultPerPage = 10
const currentPageNumber = 1
const totalPageCount = Math.round(totalProductCount / resultPerPage)
const from = parseInt((currentPageNumber - 1) * resultPerPage) + 1
const to = parseInt(currentPage * resultPerPage)

console.log(Showing {from} to {to} of {totalProductsCount} ({totalPageCount} Pages))

// Showing 1 to 10 of 0 ( 0 pages) // still same

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda