Add "200 per page" option for UI table grids

This commit is contained in:
Lance Edgar 2018-11-14 10:38:08 -06:00
parent b33c2fd0d0
commit fed42d4898

View file

@ -980,7 +980,7 @@ class Grid(object):
def get_pagesize_options(self):
# TODO: Make configurable or something...
return [5, 10, 20, 50, 100]
return [5, 10, 20, 50, 100, 200]
class CustomWebhelpersGrid(webhelpers2_grid.Grid):