EasyAdminBundle icon indicating copy to clipboard operation
EasyAdminBundle copied to clipboard

EasyAdmin is a fast, beautiful and modern admin generator for Symfony applications.

Results 435 EasyAdminBundle issues
Sort by recently updated
recently updated
newest added

**Short description of what this feature will allow to do:** I would like to add an option to the FormField class that allows tabs to be disabled. Add new Option...

**Describe the bug** I don't really know if this is an EasyAdmin issue or a KnpPaginatorBundle issue. MenuItem is not highlighted when it links to a route where there is...

**Describe the bug** There is a graphical bug for MoneyField and I think it is due to the update to the last Bootstrap version **To Reproduce** Just render a MoneyField...

bug
status: confirmed
good first issue

It would be helpful to have the collection tag available as detail of the events "ea.collection.item-added" and "ea.collection.item-removed" events, otherwise there is no simple way to know which add or...

**Describe the bug** I have a "TurnoCrudController" with this field configured in configureFields() `CollectionField::new('rigaTurnos')->useEntryCrudForm()->setEntryIsComplex()` The "rigaTurnos" field is a OneToMany with "RigaTurno": ``` #[ORM\OneToMany(mappedBy: 'turno', targetEntity: RigaTurno::class)] private Collection $rigaTurnos;...

This fixes #5886. Due array and [ArrayCollection](https://github.com/doctrine/collections/blob/2.1.x/src/ArrayCollection.php) index starts from zero.

Consider global action "Export to pdf" to export all entities in list (index page). Entities are queried by queryBuilder: ```php private function indexEntities(AdminContext $context): array { $fields = FieldCollection::new($this->configureFields(Crud::PAGE_INDEX)); $queryBuilder...

Hello, I use CollectionField::new('images')->useEntryCrudForm(ImageCrudController::class). The form works and I can upload and delete files. ![easy-admin](https://github.com/EasyCorp/EasyAdminBundle/assets/1999598/05484e25-2653-47d8-8091-ae34dbfbe429) There is a problem with the labels. The buttons work but do not change the...

**Short description of what this feature will allow to do:** Similar to https://ux.symfony.com/demos/live-component/dependent-form-fields when you switch the input of one field, the options on the other ones get updated. **Example...

When using easy admin in a bundle, it does not map the crud in `crudFqcnToEntityFqcnMap`. Since the Crud holds the Fqcn of the linked entity. I propose: - Rename the...