contributte / datagrid

:muscle: DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc
https://contributte.org/packages/contributte/datagrid/
MIT License
285 stars 189 forks source link

Suppress remembering of active page #709

Open janmottl opened 5 years ago

janmottl commented 5 years ago

It's unwanted feature that grid remembers active page when grid is opened next time. Is it possible to suppress remembering of active page? Is there any workaround how to delete it from session data? What's active page parameter name?

janmottl commented 5 years ago

I have found a solution:

    $grid = new DataGrid($this, $name);
    $grid->saveSessionData('_grid_page', 1);