DataGrid Page Number

Very late to the game here but you can get the page number with self.data_grid.get_page() :slight_smile:

p.s. you may also enjoy:

self.data_grid.next_page()
self.data_grid.previous_page()
self.data_grid.jump_to_first_page()
self.data_grid.jump_to_last_page()

6 Likes