APYDataGridBundleグリッドが返す必要のあるアイテムのリストに条件を設定する方法を何時間も探していましたが、答えが見つかりませんでした。
DQLクエリを設定し、それをグリッドに渡して、フェッチしたい正確なクエリ結果を表示する方法はありますか?
これはコードです:
public function filteredlistAction(){
// Create simple grid based on the entity
$source = new Entity('ACMEBundle:MyEntity');
// Get a grid instance
$grid = $this->get('grid');
// Attach the source to the grid
$grid->setSource($source);
...
...
**$grid->getColumns()->getColumnById('myentity_filter_column')->setData('the exact value I tried to match');**
// Manage the grid redirection, exports and the response of the controller
return $grid->getGridResponse('ACMEBundle:MyEntity:index_filteredlist.html.twig');
}