mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-16 17:44:41 +00:00
Merge pull request #1127 from pv2b/uimodelgrid-itemsperpage-default
(Base) Default to inf rows not 9999
This commit is contained in:
commit
2a9b312b2e
@ -58,7 +58,7 @@ class UIModelGrid
|
||||
*/
|
||||
public function fetchBindRequest($request, $fields, $defaultSort = null)
|
||||
{
|
||||
$itemsPerPage = $request->get('rowCount', 'int', 9999);
|
||||
$itemsPerPage = $request->get('rowCount', 'int', -1);
|
||||
$currentPage = $request->get('current', 'int', 1);
|
||||
$sortBy = array($defaultSort);
|
||||
$sortDescending = false;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user