ano / data-grid-bundle
Data grid bundle for ano/data-grid
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- ano/data-grid: *
- symfony/framework-bundle: 2.0.*
Requires (Dev)
- ano/data-grid: dev-master
- symfony/framework-bundle: 2.0.*
This package is not auto-updated.
Last update: 2024-11-09 14:04:48 UTC
README
Installation
Usage
Building the grid
class DashboardController extends AdminController { public function gridAction(Request $request, $page = 1, $pageSize = 10) { $factory = $this->getDataGridFactory(); $grid = $factory->createBuilder('my_grid') ->addColumn('id', 'text', array( 'label' => 'ID', 'property_path' => 'id', )) ->addColumn('title', 'text', array( 'label' => 'Title', 'property_path' => 'title', )) ->addColumn('author', 'text', array( 'label' => 'Author', 'property_path' => 'author.name', )) ->addColumn('date', 'date', array( 'label' => 'Released at', 'property_path' => 'releasedAt', )) ->addColumn('price', 'money', array( 'label' => 'Price', 'property_path' => 'price', )) ->addColumn('edit', 'action', array( 'label' => 'Edit', // 'callback' => function() { }, )) ->getDataGrid() ; return $this->render('MyAdminBundle::grid.html.twig', array( 'grid' => $grid->createView(), )); } /** * @return \Ano\DataGrid\DataGridFactoryInterface */ public function getDataGridFactory() { return $this->get('ano_data_grid.data_grid.factory'); } }
Rendering the grid
{% data_grid_theme grid 'MyAdminBundle::grid_theme.html.twig' %} <table class="datagrid"> {{ grid_head(grid) }} {{ grid_body(grid) }} {{ grid_foot(grid) }} </table>