Loop through all rows with pagination and server side processing
Loop through all rows with pagination and server side processing
Taloncor
Posts: 6Questions: 4Answers: 0
Is there any easy way to loop through all availabe/filtered rows while pagination and server side processing is enabled?
This discussion has been closed.
Answers
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
Ok, gotta build it myself then. Thanks for the quick reply :)