Questions tagged [symfony2-easyadmin]

EasyAdmin is a Symfony bundle that lets you create administration backends for Symfony applications with unprecedented simplicity.

EasyAdmin lets you create administration backends for Symfony applications with unprecedented simplicity.

Features

  • CRUD operations on Doctrine entities (create, edit, list, delete).
  • Full-text search, pagination and column sorting.
  • Fully responsive design (smartphones, tablets and desktops).
  • Translated into tens of languages.
  • Fast, simple and smart where appropriate.

Useful links

130 questions
0
votes
1 answer

Persist entity in controller POST action for EasyAdminBundle

I'm trying to add some custom action in symfony EasyAdminBundle, I just added a form view with no problem, but the problem is with this form POST action, it is another method of same controller, which works well, but when I do persist() and flush()…
K. Weber
  • 2,643
  • 5
  • 45
  • 77
0
votes
2 answers

EasyAdminBundle entities labels translations

I'm unable to configure translations. My config.yml has (among others) this entry: easy_admin: entities: Blog: label: app.blog class: AppBundle\Entity\Blog I've also created a translation resorce: messages.es.xliff with this…
Alex
  • 67
  • 8
0
votes
1 answer

Property not defined while extends from BaseUser at FOSUserBundle

I have this User entity extends from BaseUser: namespace PDOneBundle\Entity; use FOS\UserBundle\Model\User as BaseUser; use Doctrine\ORM\Mapping as ORM; use PDOneBundle\Classes\Form\Validator\Constraints as GdcaAssert; use…
ReynierPM
  • 17,594
  • 53
  • 193
  • 363
-1
votes
1 answer

Symfony 4 EasyAdmin - Render association data type in twig template

Using EasyAdmin in my Symfony 4 app. Working on show view for the User entity. I want to display all my related (1-many) entities in the show view for User as lists I can style. The default template for this datatype is…
TimothyAURA
  • 1,329
  • 5
  • 21
  • 44
-1
votes
1 answer

Symfony 4 EasyAdmin - Property does not render when overriding bundle template

Using Symfony 4.1 with EasyAdmin bundle. I am trying to override a template for the User (one of my entites) show view. I have set up the override and it is working. Created a user_show.html.twig and registered it in the easy_admin config file. I…
TimothyAURA
  • 1,329
  • 5
  • 21
  • 44
-1
votes
1 answer

type: 'ckeditor' doesn't work in EasyAdminBundle

I'm follow the guide on To Integrating IvoryCKEditorBundle in EasyAdminBundle, I'm using Symfony 3.1.10 version and EasyAdminBundle 1.17.12 I put on AppKernel new Ivory\CKEditorBundle\IvoryCKEditorBundle(), //CK Editor and just like say in the…
-1
votes
2 answers

Symfony: How to use translation component in entity __toString?

Yes, I know this has been asked before and discouraged, but I have a good use case for that. I am interested in learning the view-oriented supplementary approach. The use case: I have an entity, say Venue (id, name, capacity) which I use as…
-1
votes
2 answers

I can not update the User password in FOSUserBundle integration with EasyAdminBundle

I am trying to update the password for an user using EasyAdminBundle integrated with FOSUserBundle, I have followed the steps showed in the documentation but no luck... :( I am able to update the username, email, enabled, but not the password, which…
relez
  • 750
  • 2
  • 13
  • 28
-2
votes
1 answer

Problems with 'Leave Empty' Last login in FOSUserBundle integration

I am trying to bring the creation of users into easy_admin, I have followed the steps in the documentation but I am still getting the error: Expected argument of type "DateTime", "NULL" given I am afraid this issue was fixed, but I can not make it…
relez
  • 750
  • 2
  • 13
  • 28
-3
votes
1 answer

Catchable Fatal Error: Object of class AppBundle\Entity\Job could not be converted to string

Can anyone help me to fix this problem? I don't know why but I get this exception: Catchable Fatal Error: Object of class AppBundle\Entity\Job could not be converted to string my entity Category: namespace AppBundle\Entity; use…
Frameman
  • 111
  • 1
  • 9
1 2 3
8
9