有没有办法利用索纳塔的数据网格功能来显示结果集?
class DefaultController extends Controller
{
public function nl_listAction()
{
$obj = array();
$cnx = $this->get('doctrine.dbal.a_connection');
$cnx->query('CALL(a_procedure)');
$obj['cnx'] = $cnx;
return $this->render('GlideConfigBundle:Default:nl_list.html.twig', $obj);
}
}
在这里,我从一个控制器调用一个过程,我想使用datagrid显示结果数据。
这是个好主意吗?
我该怎么做?
最佳答案
最后只在我自己的模板/宏中使用bootstrap table styles。
另外,我还不得不重新设计轮子,做过滤小部件、列表小部件和寻呼机:(…
关于php - Symfony2-没有实体的Sonata数据网格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11308448/