Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions Grid/Grid.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ public function getRouteUrl()
if ($this->routeforced != '') {
return $this->routeforced;
} else {
return $this->router->generate($this->request->get('_route'));
return $currentUrl = $this->request->getUri();
}
}

Expand Down Expand Up @@ -311,16 +311,16 @@ public function getSubGrid()
{
return $this->subGrid;
}
/**
* @return \Doctrine\ORM\QueryBuilder
*/
public function getQueryBuilder()
{
return $this->qb;
}

/**
* @return \Doctrine\ORM\QueryBuilder
*/
public function getQueryBuilder()
{
return $this->qb;
}



public function render()
{
Expand Down