diff --git a/Grid/Grid.php b/Grid/Grid.php index 23530b4c..17dab7be 100644 --- a/Grid/Grid.php +++ b/Grid/Grid.php @@ -419,7 +419,11 @@ public function handleRequest(Request $request) $this->createHash(); - $this->requestData = $request->get($this->hash); + if(!$this->request->get('_route')){ + $this->requestData = (array) $this->request->attributes->get('request')->get($this->hash); + } else { + $this->requestData = (array) $this->request->get($this->hash); + } $this->processPersistence();