Loop through all rows with pagination and server side processing

Loop through all rows with pagination and server side processing

TaloncorTaloncor Posts: 6Questions: 4Answers: 0

Is there any easy way to loop through all availabe/filtered rows while pagination and server side processing is enabled?

Answers

  • allanallan Posts: 63,794Questions: 1Answers: 10,514 Site admin

    rows().every(). Keep in mind that it is a client-side function so it can only loop through the rows available at the client-side (i.e. the rows currently shown). The other rows exist only at the server-side and thus the client-side methods don't have access to them.

    Allan

  • TaloncorTaloncor Posts: 6Questions: 4Answers: 0

    Ok, gotta build it myself then. Thanks for the quick reply :)

This discussion has been closed.