2

I need to filter rows in my jQuery Bootgrid (with pagination).

How I can get ALL rows from grid?

When I try to do this $('#TableId').bootgrid().data('.rs.jquery.bootgrid') it returns only rows in first page.

ap_student
  • 45
  • 6

1 Answers1

2

Almost there. Try this:

$('#TableId').bootgrid().data('.rs.jquery.bootgrid').rows

returns all rows data(array) that Bootgrid used right now.

Jason
  • 56
  • 4