From e4bad6c1f821cd0e4a8c8241f3b07b2a556b5714 Mon Sep 17 00:00:00 2001 From: StudioMaX Date: Thu, 11 May 2017 14:07:09 +0600 Subject: [PATCH] Disable the Output walkers of Entity with joins --- Grid/Source/Entity.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Grid/Source/Entity.php b/Grid/Source/Entity.php index e7df1df2..d5a5c252 100644 --- a/Grid/Source/Entity.php +++ b/Grid/Source/Entity.php @@ -515,6 +515,7 @@ public function execute($columns, $page = 0, $limit = 0, $maxResults = null, $gr $query->setHint($hintKey, $hintValue); } $items = new Paginator($query, $hasJoin); + $items->setUseOutputWalkers(false); $repository = $this->manager->getRepository($this->entityName);