APYDataGridBundle
APYDataGridBundle copied to clipboard
Symfony Datagrid Bundle
When i apply some tweak, it was saved in session. After, i try to get applied column filters by call $grid->getFilters(), but in this method code will walk through $grid->sessionData,...
Hi there I have a weird case with my Pagerfanta pagination. Here are two cases: **Case 1: directly switch to another page** The request doesn't appear as an ajax call...
Hello ! Before I start I will apologize for the quality of my English I'm using Apydatagridbundle in my project, everything works fine When I try to make excel work...
Hello, How do you use the "string_agg" function with Postgresql ? I tried like this : ``` php @GRID\Source(columns="id,tag,description,roles.role:string_agg:,",filterable=true,groupBy={"id"}) @GRID\Column(title="rolesstring",field="roles.role:string_agg:,") or @GRID\Source(columns="id,tag,description,roles.role:string_agg:','",filterable=true,groupBy={"id"}) @GRID\Column(title="rolesstring",field="roles.role:string_agg:','") ``` It requires the glue character at...
Hi, I'm trying to extend grid block and add new block inside: `CommonBundle/Resources/views/_partial/grid.html.twig` {% extends 'APYDataGridBundle::blocks_js.jquery.html.twig' %} {% block grid %} {{ grid_pager_results_perpage(grid) }} {{ grid_top_links(grid) }} {% if grid.isTitleSectionVisible...
Hi @APY/collaborators , I want to propose some improvements to the DataGridExtension, this is why I added tests with #983 PR, I want to test the current behavior before working...
Hello, I have three entities with ManytoOne/OneToMany relations: ``` class Projet { /** * * @var string $nom @GRID\Column(title="Nom") * @ORM\Column(name="nom", type="string", length=255, nullable=false) */ private $nom; /** * @GRID\Column(title="Domaine",...
Hello everyone. I have a problem and I can't solve it. I have to display a grid, containing datas from a table and a joined table. The primary column is...
Hi, I'm trying to order the data in a group_concat but can't figure out how to do it. Email is an ORM entity with a `isPrimary` boolean. I need the...